react-garden
Version:
React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.
20 lines (17 loc) • 500 B
JavaScript
// ** MUI Imports
import TextField from '@mui/material/TextField'
const TextFieldValidation = () => {
return (
<form className='demo-space-x' noValidate autoComplete='off'>
<TextField error id='validation-error' label='Error' defaultValue='Hello World' />
<TextField
error
label='Error'
defaultValue='Hello World'
helperText='Incorrect entry.'
id='validation-error-helper-text'
/>
</form>
)
}
export default TextFieldValidation