import React, { useState } from "react"; import { ReactLocation, Router } from "@tanstack/react-location"; import Home from "./pages/Home"; import Settings from "./pages/Settings"; // @ts-expect-error import { darkTheme, lightTheme } from "./styles/theme/index.css.ts"; import "./Translation/config"; const location = new ReactLocation(); function App() { // just check for the theme one 1 time // var { matches } = window.matchMedia('(prefers-color-scheme: dark)') const matches = true; const themeClass = matches ? darkTheme : lightTheme; return ( }, { path: "/settings", element: }, ]} > ); } export default App;