24
packages/twenty-front/src/pages/settings/lab/SettingsLab.tsx
Normal file
24
packages/twenty-front/src/pages/settings/lab/SettingsLab.tsx
Normal file
@ -0,0 +1,24 @@
|
||||
import { SettingsPageContainer } from '@/settings/components/SettingsPageContainer';
|
||||
import { SettingsLabContent } from '@/settings/lab/components/SettingsLabContent';
|
||||
import { SettingsPath } from '@/types/SettingsPath';
|
||||
import { SubMenuTopBarContainer } from '@/ui/layout/page/components/SubMenuTopBarContainer';
|
||||
import { getSettingsPath } from '~/utils/navigation/getSettingsPath';
|
||||
|
||||
export const SettingsLab = () => {
|
||||
return (
|
||||
<SubMenuTopBarContainer
|
||||
title="Lab"
|
||||
links={[
|
||||
{
|
||||
children: 'Other',
|
||||
href: getSettingsPath(SettingsPath.Lab),
|
||||
},
|
||||
{ children: 'Lab' },
|
||||
]}
|
||||
>
|
||||
<SettingsPageContainer>
|
||||
<SettingsLabContent />
|
||||
</SettingsPageContainer>
|
||||
</SubMenuTopBarContainer>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user