owncast/web/components/layouts/SimpleLayout.tsx
2022-04-28 12:57:51 -07:00

11 lines
202 B
TypeScript

import { AppProps } from 'next/app';
function SimpleLayout({ Component, pageProps }: AppProps) {
return (
<div>
<Component {...pageProps} />
</div>
);
}
export default SimpleLayout;