UNPKG
materialuiupgraded
Version:
latest (3.2.0)
3.2.0
Material-UI's workspace package
material-ui.com
mui-org/material-ui
materialuiupgraded
/
test
/
regressions
/
tests
/
TextField
/
TextFieldError.js
12 lines
(10 loc)
•
270 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
;
import
TextField
from
'@material-ui/core/TextField'
;
export
default
function
TextFieldError
(
) {
return
(
<
div
>
<
TextField
error
label
=
"Foo"
/>
<
TextField
error
label
=
"Foo"
value
=
"Hello world"
/>
</
div
>
); }