From 550f00b93c03a9ad98ef9bb1197c0fbfd5b1e572 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 21 Mar 2020 14:17:58 +0300 Subject: chore!: migrate index.js -> index.tsx --- src/index.js | 87 ------------------------------------------------------------ 1 file changed, 87 deletions(-) delete mode 100644 src/index.js (limited to 'src/index.js') diff --git a/src/index.js b/src/index.js deleted file mode 100644 index 49c66e7..0000000 --- a/src/index.js +++ /dev/null @@ -1,87 +0,0 @@ -import React, { useState, useEffect } from 'react'; -import ReactDOM from 'react-dom'; - -import { - BenzinThemeProvider, - Header, -} from 'react-benzin'; - -import 'typeface-roboto'; - -import Timer from './pages/Timer/Timer'; -import Scoreboard from './pages/Scoreboard/Scoreboard'; -import Contribute from './pages/Contribute/Contribute'; -import Profile from './pages/Profile/Profile'; - -import TimerIcon from '@material-ui/icons/Timer'; -import AccountCircleIcon from '@material-ui/icons/AccountCircle'; -import AssignmentIcon from '@material-ui/icons/Assignment'; -import GitHubIcon from '@material-ui/icons/GitHub'; - -import { get } from './requests'; - - -const App = () => { - - const [page, setPage] = useState('app'); - const [user, setUser] = useState({ username: 'anonymous', id: null }); - const [recentSolutions, setRecentSolutions] = useState([]); - - const headerContents = { - app: (), - profile: (), - scoreboard: (), - contribute: (), - }; - - useEffect(() => { - const userId = +localStorage.getItem('userId'); - if (userId) { - get('users/').then(response => { - setUser(response.data.filter(user => user.id === +userId)[0]); - }); - } - }, []); - - const Page = ({ page }) => { - switch (page) { - case 'app': - return ( - - ); - - case 'profile': - return ; - - case 'scoreboard': - return ; - - case 'contribute': - return ; - - default: - return ; - } - }; - - return ( - -
- - - ); -}; - -document.body.style.overflow = 'hidden'; -ReactDOM.render(, document.getElementById('root')); -- cgit v1.2.3