From e2c16ba26decc7b3dcc84a188bdbe0583f492841 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 14 Nov 2020 22:28:45 +0300 Subject: feat: create blank sections --- src/index.tsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'src/index.tsx') diff --git a/src/index.tsx b/src/index.tsx index 62979f7..5337615 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3,6 +3,8 @@ import ReactDOM from 'react-dom'; import { Benzin, ContentSection } from 'react-benzin'; import { Paper } from '@material-ui/core'; import { makeStyles } from '@material-ui/core/styles'; +import BsuFantomSection from './containers/BsuFantomSection/BsuFantomSection'; +import LoginSection from './containers/LoginSection/LoginSection'; const useStyles = makeStyles(theme => ({ root: { @@ -20,7 +22,8 @@ const App: React.FC = () => { - Hello, world! + + @@ -28,10 +31,5 @@ const App: React.FC = () => { }; -ReactDOM.render( - - - , - document.getElementById('root') -); +ReactDOM.render(, document.getElementById('root')); -- cgit v1.2.3