Replaced JavaScript with TypeScript.

This commit is contained in:
Daniel
2023-01-29 21:42:36 +03:30
parent 31010c96e9
commit 4cd0e8799c
12 changed files with 249 additions and 172 deletions
+17
View File
@@ -0,0 +1,17 @@
import "@/styles/globals.css";
import type { AppProps } from "next/app";
import Head from "next/head";
export default function App({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
<Component {...pageProps} />
</>
);
}