1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-25 03:48:24 +02:00
upscayl/renderer/pages/_app.tsx
2022-11-12 02:09:28 +05:30

17 lines
306 B
TypeScript

import "../styles/globals.css";
import Head from "next/head";
import { AppProps } from "next/app";
const MyApp = ({ Component, pageProps }: AppProps) => {
return (
<>
<Head>
<title>Upscayl</title>
</Head>
<Component {...pageProps} />
</>
);
};
export default MyApp;