import './scss/index.scss'; import { Provider } from 'mobx-react'; import React from 'react'; import ReactDOM from 'react-dom'; import { BrowserRouter, Route, Switch } from 'react-router-dom'; import { Clips, Downloader, NotFound, Oauth, Soundboard, Stats, VideoArchive } from './pages'; import { rootStoreInstance } from './stores'; import { Wrapper } from './wrapper'; const App: any = (): any => { return ( ); }; ReactDOM.render( as any, document.getElementById('app'));