Moved admin to /admin and created blank placeholder for v2 frontend
This commit is contained in:
11
web/components/layouts/simple-layout.tsx
Normal file
11
web/components/layouts/simple-layout.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { AppProps } from 'next/app';
|
||||
|
||||
function SimpleLayout({ Component, pageProps }: AppProps) {
|
||||
return (
|
||||
<div>
|
||||
<Component {...pageProps} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default SimpleLayout;
|
||||
Reference in New Issue
Block a user