remove dupe main (#355)
This commit is contained in:
parent
91cbe0b104
commit
f9ddf07085
|
@ -8,10 +8,10 @@ const inter = Inter({ subsets: ['latin'] });
|
||||||
|
|
||||||
function App({ Component, pageProps }: AppProps<{}>) {
|
function App({ Component, pageProps }: AppProps<{}>) {
|
||||||
return (
|
return (
|
||||||
<main className={inter.className}>
|
<div className={inter.className}>
|
||||||
<Toaster />
|
<Toaster />
|
||||||
<Component {...pageProps} />
|
<Component {...pageProps} />
|
||||||
</main>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue