1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-13 18:30:54 +01:00
upscayl/renderer/pages/_app.tsx

19 lines
403 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";
2022-12-08 04:25:26 +01:00
import { useEffect } from "react";
import { themeChange } from "theme-change";
2022-11-11 21:39:28 +01:00
const MyApp = ({ Component, pageProps }: AppProps) => {
return (
2022-12-08 04:25:26 +01:00
<>
2022-11-11 21:39:28 +01:00
<Head>
<title>Upscayl</title>
</Head>
2022-12-08 04:25:26 +01:00
<Component {...pageProps} data-theme="dark" />
</>
2022-11-11 21:39:28 +01:00
);
};
export default MyApp;