mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-12 01:40:53 +01:00
23 lines
515 B
TypeScript
23 lines
515 B
TypeScript
import "../styles/globals.css";
|
|
import Head from "next/head";
|
|
import { AppProps } from "next/app";
|
|
import { useEffect } from "react";
|
|
import { themeChange } from "theme-change";
|
|
import log from "electron-log/renderer";
|
|
import { Provider } from "jotai";
|
|
|
|
const MyApp = ({ Component, pageProps }: AppProps) => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Upscayl</title>
|
|
</Head>
|
|
<Provider>
|
|
<Component {...pageProps} data-theme="dark" />
|
|
</Provider>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default MyApp;
|