This file contains 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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains 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 * as React from 'react'; | |
import { StandardTextFieldProps } from '@material-ui/core/TextField/TextField'; | |
import Paper from '@material-ui/core/Paper/Paper'; | |
import MenuItem from '@material-ui/core/MenuItem/MenuItem'; | |
import InputAdornment from '@material-ui/core/InputAdornment/InputAdornment'; | |
import IconButton from '@material-ui/core/IconButton/IconButton'; | |
import ArrowDropDown from '@material-ui/icons/ArrowDropDown'; | |
import ArrowDropUp from '@material-ui/icons/ArrowDropUp'; | |
import { TextField } from 'formik-material-ui'; | |
import { Field, FieldProps, FormikProps } from 'formik'; |
This file contains 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 React from 'react'; | |
/** | |
* A default ErrorBoundary that renders children, or if they produce an error, renders the passed | |
* onError() function, optionally with the error as a prop. | |
*/ | |
export class GlobalSentryBoundary extends React.Component { | |
state = { reactError: undefined }; | |
componentDidCatch(error, errorInfo) { |