diff options
author | ludovicm67 <ludovicmuller1@gmail.com> | 2020-01-31 12:18:19 +0100 |
---|---|---|
committer | Quentin Gliech <quentingliech@gmail.com> | 2020-02-11 20:54:36 +0100 |
commit | aea42344ded1708361e7e1d577e9c6aa370ad64e (patch) | |
tree | ea9e14c64027155d43b5896b083d7b86bc9ae382 /webui/src/index.js | |
parent | f105f3bbdfd7b0fb2aa2ddd54719eba725cd5e07 (diff) | |
download | git-bug-aea42344ded1708361e7e1d577e9c6aa370ad64e.tar.gz |
webui: transform index and App to TypeScript
Diffstat (limited to 'webui/src/index.js')
-rw-r--r-- | webui/src/index.js | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/webui/src/index.js b/webui/src/index.js deleted file mode 100644 index 6f838c69..00000000 --- a/webui/src/index.js +++ /dev/null @@ -1,38 +0,0 @@ -import ThemeProvider from '@material-ui/styles/ThemeProvider'; -import { createMuiTheme } from '@material-ui/core/styles'; -import ApolloClient from 'apollo-boost'; -import { - IntrospectionFragmentMatcher, - InMemoryCache, -} from 'apollo-cache-inmemory'; -import React from 'react'; -import { ApolloProvider } from 'react-apollo'; -import ReactDOM from 'react-dom'; -import { BrowserRouter } from 'react-router-dom'; - -import introspectionQueryResultData from './fragmentTypes'; -import App from './App'; - -const theme = createMuiTheme(); - -const client = new ApolloClient({ - uri: '/graphql', - cache: new InMemoryCache({ - fragmentMatcher: new IntrospectionFragmentMatcher({ - introspectionQueryResultData, - }), - }), -}); - -ReactDOM.render( - <ApolloProvider client={client}> - <BrowserRouter> - <ThemeProvider theme={theme}> - <React.Suspense fallback={'Loading…'}> - <App /> - </React.Suspense> - </ThemeProvider> - </BrowserRouter> - </ApolloProvider>, - document.getElementById('root') -); |