diff options
author | Michael Muré <batolettre@gmail.com> | 2019-08-31 14:21:45 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-08-31 22:07:06 +0200 |
commit | 87c64cd8fba04f3d88a60ee0df07259523113bf0 (patch) | |
tree | 07e305fbff810d2a4bdcf79163ae60d166fbcba6 /webui/src/index.js | |
parent | 0020e608935882fab0318a0e0946b47f47f14c95 (diff) | |
download | git-bug-87c64cd8fba04f3d88a60ee0df07259523113bf0.tar.gz |
webui: upgrade to material-ui 4
Diffstat (limited to 'webui/src/index.js')
-rw-r--r-- | webui/src/index.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/webui/src/index.js b/webui/src/index.js index 885911f5..f71e82f3 100644 --- a/webui/src/index.js +++ b/webui/src/index.js @@ -1,4 +1,3 @@ -import { install } from '@material-ui/styles'; import ThemeProvider from '@material-ui/styles/ThemeProvider'; import { createMuiTheme } from '@material-ui/core/styles'; import ApolloClient from 'apollo-boost'; @@ -7,10 +6,7 @@ import { ApolloProvider } from 'react-apollo'; import ReactDOM from 'react-dom'; import { BrowserRouter } from 'react-router-dom'; -install(); - -// TODO(sandhose): this is temporary until Material-UI v4 goes out -const App = React.lazy(() => import('./App')); +import App from './App'; const theme = createMuiTheme(); |