soapbox/src/pages/empty-page.tsx

22 wiersze
332 B
TypeScript

import React from 'react';
import { Layout } from '../components/ui';
interface IEmptyPage {
children: React.ReactNode;
}
const EmptyPage: React.FC<IEmptyPage> = ({ children }) => {
return (
<>
<Layout.Main>
{children}
</Layout.Main>
<Layout.Aside />
</>
);
};
export default EmptyPage;