remove dupe main (#355)

This commit is contained in:
Brad Ullman 2023-04-01 23:17:49 -07:00 committed by GitHub
parent 91cbe0b104
commit f9ddf07085
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -8,10 +8,10 @@ const inter = Inter({ subsets: ['latin'] });
function App({ Component, pageProps }: AppProps<{}>) {
return (
<main className={inter.className}>
<div className={inter.className}>
<Toaster />
<Component {...pageProps} />
</main>
</div>
);
}