-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tsx
More file actions
20 lines (15 loc) · 765 Bytes
/
index.tsx
File metadata and controls
20 lines (15 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import * as React from "react"
import ReactDOM from "react-dom"
import Platform from "./Platform"
import * as serviceWorker from "./serviceWorker"
import "./index.css"
// MUI Typography varient error: https://material-ui.com/style/typography/#migration-to-typography-v2
/* tslint:disable-next-line */
;(window as any).__MUI_USE_NEXT_TYPOGRAPHY_VARIANTS__ = true
// tslint:disable-next-line:no-expression-statement
ReactDOM.render(<Platform />, document.getElementById("root"))
// If you want your app to work offline and load faster, you can change
// Unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: http://bit.ly/CRA-PWA
// tslint:disable-next-line:no-expression-statement
serviceWorker.unregister()