| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- 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 (
- <QueryClientProvider client={queryClient}>
- <ThemeProvider theme={standard}>
- <StyledMain>
- <GlobalStyle />
- <PorterErrorBoundary errorBoundaryLocation="globalErrorBoundary">
- <BrowserRouter>
- <MainWrapper />
- </BrowserRouter>
- </PorterErrorBoundary>
- </StyledMain>
- </ThemeProvider>
- </QueryClientProvider>
- );
- }
- }
- 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;
- `;
|