mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-13 18:30:54 +01:00
16 lines
259 B
JavaScript
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;
|