diff options
author | eug-vs <eug-vs@keemail.me> | 2020-11-15 04:42:11 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-11-15 04:42:11 +0300 |
commit | fc2b1a95e61dcc1bacb624f94b5b77374eb65faa (patch) | |
tree | 0f0e719b722077644ffe87f1fb4f896edbcd312d /src/index.tsx | |
parent | 6d6e0f9d641c9c15a147e0a53fa1db45574560e0 (diff) | |
download | famcs-kit-fc2b1a95e61dcc1bacb624f94b5b77374eb65faa.tar.gz |
refactor: LoginSection -> LoginForm
Diffstat (limited to 'src/index.tsx')
-rw-r--r-- | src/index.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/index.tsx b/src/index.tsx index ddde049..5155ab7 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -4,7 +4,6 @@ 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'; import { AuthProvider } from './hooks/useAuth'; const useStyles = makeStyles(theme => ({ @@ -24,7 +23,6 @@ const App: React.FC = () => { <Benzin> <Paper className={classes.root}> <ContentSection sectionName="famcs-kit"> - <LoginSection /> <BsuFantomSection /> </ContentSection> </Paper> |