This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* eslint-disable react/jsx-indent */ | |
| import React from 'react' | |
| import { observer, inject } from 'mobx-react' | |
| import { TextField, Icon, Button } from 'site_library/components' | |
| import FormHelperText from '@material-ui/core/FormHelperText' | |
| import { Formik, FieldArray, Form } from 'formik' | |
| import validate from './validate' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import MonsteredRegular from '~/public/fonts/Montserrat/Montserrat-Regular.otf' | |
| const GlobalCss = withStyles({ | |
| // @global is handled by jss-plugin-global. | |
| '@global': { | |
| // You should target [class*="MuiButton-root"] instead if you nest themes. | |
| '.MuiButton-root': { | |
| fontSize: '1rem', | |
| }, | |
| '.exampleClass': { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'core-js/stable' | |
| import 'regenerator-runtime/runtime' | |
| import { Workbox } from 'workbox-window' | |
| import React from 'react' | |
| import ReactDOM from 'react-dom' | |
| import { Provider } from 'mobx-react' | |
| import { Router } from 'react-router' | |
| import { syncHistoryWithStore } from 'mobx-react-router' | |
| import { createBrowserHistory } from 'history' |
NewerOlder