2022-04-28 10:51:21 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import { Layout } from '../components/ui';
|
|
|
|
|
2023-01-10 15:03:15 -08:00
|
|
|
interface IEmptyPage {
|
|
|
|
children: React.ReactNode
|
|
|
|
}
|
|
|
|
|
|
|
|
const EmptyPage: React.FC<IEmptyPage> = ({ children }) => {
|
2022-04-28 10:51:21 -07:00
|
|
|
return (
|
2022-04-28 16:18:55 -07:00
|
|
|
<>
|
2022-04-28 10:51:21 -07:00
|
|
|
<Layout.Main>
|
|
|
|
{children}
|
|
|
|
</Layout.Main>
|
|
|
|
|
|
|
|
<Layout.Aside />
|
2022-04-28 16:18:55 -07:00
|
|
|
</>
|
2022-04-28 10:51:21 -07:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default EmptyPage;
|