Skip to content

Commit

Permalink
fix: wrong formatting causes nothing to be displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
mst-mkt committed Jun 27, 2024
1 parent 7c94d76 commit 8527e5c
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ import Head from 'next/head';
import '../styles/globals.css';

function MyApp({ Component, pageProps }: AppProps) {
return;
<>
<Head>
<title>Create Next App</title>
</Head>
<Component {...pageProps} />
</>;
return (
<>
<Head>
<title>Create Next App</title>
</Head>
<Component {...pageProps} />
</>
);
}
export default MyApp;

0 comments on commit 8527e5c

Please sign in to comment.