mirror of
https://github.com/owncast/owncast.git
synced 2024-12-24 10:08:27 +03:00
12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
|
import { AppProps } from 'next/app';
|
||
|
|
||
|
function SimpleLayout({ Component, pageProps }: AppProps) {
|
||
|
return (
|
||
|
<div>
|
||
|
<Component {...pageProps} />
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default SimpleLayout;
|