import React, { Component } from "react"; import { BrowserRouter } from "react-router-dom"; import PorterErrorBoundary from "shared/error_handling/PorterErrorBoundary"; import styled, { ThemeProvider, createGlobalStyle } from "styled-components"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; import MainWrapper from "./main/MainWrapper"; import midnight from "shared/themes/midnight"; import standard from "shared/themes/standard"; const queryClient = new QueryClient(); export default class App extends Component { render() { return ( ); } } const GlobalStyle = createGlobalStyle` * { box-sizing: border-box; font-family: 'Work Sans', sans-serif; color-scheme: dark; } body { overscroll-behavior-x: none; } a { color: #949eff; text-decoration: none; } img { max-width: 100%; } `; const StyledMain = styled.div` height: 100vh; width: 100vw; position: fixed; top: 0; left: 0; color: white; `;