bigbuffet-rw/app/soapbox/pages/empty_page.tsx

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;