A component to simplify feature toggling in frontend applications at Vigo/FINTLabs.
npm install @fintlabs/fint-feature-toggle-reactA component to simplify feature toggling in frontend applications at Vigo/FINTLabs.
shell
yarn add @fintlabs/fint-feature-toggle-react
`Usage
Component
` typescript jsx
`Hook
` typescript jsx
const featureEnabled = useFeatureEnabled("name of feature");if (featureEnabled) {
// Run new feature
}
else {
...
}
``> Boostraped with Created with https://tsdx.io/