diff options
author | ilyayudovin <ilyayudovin123@gmail.com> | 2020-07-01 14:38:39 +0300 |
---|---|---|
committer | ilyayudovin <ilyayudovin123@gmail.com> | 2020-07-01 14:38:39 +0300 |
commit | 75c1dac4bceddab1d94b9e43c2fb2035297eb6bd (patch) | |
tree | d2b930d8c4464c64eb5c99077f2d5bbb4f1caf1a /src/index.tsx | |
parent | 75eb28d8338c1e0601c94640303f91ef09bd583a (diff) | |
download | which-ui-75c1dac4bceddab1d94b9e43c2fb2035297eb6bd.tar.gz |
fix eslint errors
Diffstat (limited to 'src/index.tsx')
-rw-r--r-- | src/index.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/index.tsx b/src/index.tsx index c304043..0ab06f5 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -5,14 +5,12 @@ import { CssBaseline } from '@material-ui/core'; import teal from '@material-ui/core/colors/teal'; import 'typeface-roboto'; +import { SnackbarProvider } from 'notistack'; import Header from './components/Header/Header'; import ScrollTopArrow from './components/ScrollTopArrow/ScrollTopArrow'; import Page from './pages/Page'; import { AuthProvider } from './hooks/useAuth'; import { NavigationProvider } from './hooks/useNavigate'; -import { SnackbarProvider } from 'notistack'; - - const theme = createMuiTheme({ palette: { @@ -30,7 +28,7 @@ const App: React.FC = () => { maxSnack={3} anchorOrigin={{ vertical: 'bottom', - horizontal: 'right', + horizontal: 'right' }} > <NavigationProvider> |