import { Tooltip } from '@toeverything/components/ui'; import { useFlag } from '@toeverything/datasource/feature-flags'; function CommingSoon(props: { children: JSX.Element }) { const BooleanCommingSoon = useFlag('BooleanCommingSoon', false); if (!BooleanCommingSoon) return <>; return ( {props.children} ); } export { CommingSoon };