Rename layout files

This commit is contained in:
Gabe Kangas
2022-04-28 12:57:51 -07:00
parent b90eadcb4e
commit e0c073171d
4 changed files with 2 additions and 2 deletions

View File

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