🚀(app-impress) create the base app impress
Create the base app impress, based on the people app.
This commit is contained in:
15
src/frontend/apps/impress/src/pages/recent/index.tsx
Normal file
15
src/frontend/apps/impress/src/pages/recent/index.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { ReactElement } from 'react';
|
||||
|
||||
import { Box } from '@/components';
|
||||
import { MainLayout } from '@/core/';
|
||||
import { NextPageWithLayout } from '@/types/next';
|
||||
|
||||
const Page: NextPageWithLayout = () => {
|
||||
return <Box>Recent</Box>;
|
||||
};
|
||||
|
||||
Page.getLayout = function getLayout(page: ReactElement) {
|
||||
return <MainLayout>{page}</MainLayout>;
|
||||
};
|
||||
|
||||
export default Page;
|
||||
Reference in New Issue
Block a user