1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-12 09:50:56 +01:00
upscayl/renderer/pages/_app.tsx

17 lines
306 B
TypeScript
Raw Normal View History

2022-11-11 21:39:28 +01:00
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;