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