UNPKG

featuretoggle-react

Version:

Library to use Feature Toggles of your choice in a React application

8 lines (6 loc) 173 B
import React, { Fragment } from 'react'; export const Off = ({ children, featureToggleEnabled }) => ( <Fragment> {!featureToggleEnabled && children} </Fragment> );