Autosave: 20260220-143017
This commit is contained in:
parent
71327bddd8
commit
22559112f0
@ -17,6 +17,14 @@ const menuAside: MenuAsideItem[] = [
|
|||||||
label: 'Export Wizard',
|
label: 'Export Wizard',
|
||||||
icon: icon.mdiFileExportOutline,
|
icon: icon.mdiFileExportOutline,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'Exporting Testing for ET Grow',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
href: '/et-grow-export',
|
||||||
|
label: 'ET Grow Export',
|
||||||
|
icon: icon.mdiFileExportOutline,
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
href: '/users/users-list',
|
href: '/users/users-list',
|
||||||
|
|||||||
34
frontend/src/pages/et-grow-export.tsx
Normal file
34
frontend/src/pages/et-grow-export.tsx
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { mdiFileExportOutline } from '@mdi/js';
|
||||||
|
import Head from 'next/head';
|
||||||
|
import React, { ReactElement } from 'react';
|
||||||
|
import CardBox from '../components/CardBox';
|
||||||
|
import LayoutAuthenticated from '../layouts/Authenticated';
|
||||||
|
import SectionMain from '../components/SectionMain';
|
||||||
|
import SectionTitleLineWithButton from '../components/SectionTitleLineWithButton';
|
||||||
|
import { getPageTitle } from '../config';
|
||||||
|
|
||||||
|
const ETGrowExport = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Head>
|
||||||
|
<title>{getPageTitle('ET Grow Export')}</title>
|
||||||
|
</Head>
|
||||||
|
<SectionMain>
|
||||||
|
<SectionTitleLineWithButton icon={mdiFileExportOutline} title="ET Grow Export" main>
|
||||||
|
{''}
|
||||||
|
</SectionTitleLineWithButton>
|
||||||
|
<CardBox>
|
||||||
|
<div className="text-center py-24 text-gray-500 dark:text-slate-400">
|
||||||
|
Hello World
|
||||||
|
</div>
|
||||||
|
</CardBox>
|
||||||
|
</SectionMain>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
ETGrowExport.getLayout = function getLayout(page: ReactElement) {
|
||||||
|
return <LayoutAuthenticated>{page}</LayoutAuthenticated>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ETGrowExport;
|
||||||
Loading…
x
Reference in New Issue
Block a user