UNPKG

featuretoggle-react

Version:

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

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