1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-23 20:07:40 +02:00
unleash.unleash/frontend/src/component/feature/FeatureView/FeatureVariants/FeatureVariants.tsx

11 lines
268 B
TypeScript
Raw Normal View History

import { FeatureVariantsList } from './FeatureVariantsList/FeatureVariantsList';
import { usePageTitle } from 'hooks/usePageTitle';
const FeatureVariants = () => {
usePageTitle('Variants');
return <FeatureVariantsList />;
};
export default FeatureVariants;