1234567891011121314151617181920212223242526272829 |
- import React from "react";
- import ReactDOM from "react-dom";
- import { TopErrorBoundary } from "./components/TopErrorBoundary";
- import { IsMobileProvider } from "./is-mobile";
- import { App } from "./components/App";
- import "./styles.scss";
- // Block pinch-zooming on iOS outside of the content area
- document.addEventListener(
- "touchmove",
- function(event) {
- // @ts-ignore
- if (event.scale !== 1) {
- event.preventDefault();
- }
- },
- { passive: false },
- );
- const rootElement = document.getElementById("root");
- ReactDOM.render(
- <TopErrorBoundary>
- <IsMobileProvider>
- <App />
- </IsMobileProvider>
- </TopErrorBoundary>,
- rootElement,
- );
|