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

20 lines
444 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";
2023-03-31 12:33:48 +02:00
import log from "electron-log/renderer";
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;