38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import { mdiChartTimelineVariant } 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 TableSampleClients from '../components/TableSampleClients';
|
|
import { getPageTitle } from '../config';
|
|
|
|
const TablesPage = () => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('Tables')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={mdiChartTimelineVariant}
|
|
title='Table'
|
|
main
|
|
>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox className='mb-6' hasTable>
|
|
<TableSampleClients />
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
TablesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <LayoutAuthenticated>{page}</LayoutAuthenticated>;
|
|
};
|
|
|
|
export default TablesPage;
|