import * as React from 'react'; import TextField from '@mui/material/TextField'; import { Grid, } from '@mui/material'; export default function RedQuickTextField(props: any) { return ( { if (props.onChange) { props.onChange(evt.currentTarget.value); } }} /> ); }