1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-13 18:30:54 +01:00
upscayl/renderer/pages/_app.js
2022-08-15 12:36:31 +05:30

16 lines
259 B
JavaScript

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