Remove redundant semicolon

This commit is contained in:
Dorian Niemiec 2024-06-24 23:27:45 +02:00
parent 3d0b8cef22
commit 5e0dc07861

View file

@ -3,7 +3,7 @@ import "@/app/globals.css";
function MyApp({ Component, pageProps }) {
return (
<main style={{ fontFamily: "Poppins" }}>
<Component {...pageProps} />;
<Component {...pageProps} />
</main>
);
}