17 lines
265 B
TypeScript
17 lines
265 B
TypeScript
import React from 'react';
|
|
|
|
import { Layout } from '../components/ui';
|
|
|
|
const EmptyPage: React.FC = ({ children }) => {
|
|
return (
|
|
<>
|
|
<Layout.Main>
|
|
{children}
|
|
</Layout.Main>
|
|
|
|
<Layout.Aside />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default EmptyPage;
|