bigbuffet-rw/app/soapbox/pages/empty-page.tsx

22 lines
331 B
TypeScript
Raw Normal View History

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 10:51:21 -07:00
<Layout.Main>
{children}
</Layout.Main>
<Layout.Aside />
</>
2022-04-28 10:51:21 -07:00
);
};
export default EmptyPage;