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;
|