15 lines
316 B
React
15 lines
316 B
React
![]() |
import TextField from "@mui/material/TextField";
|
||
|
export default function NameOption(props) {
|
||
|
const { onChange } = props;
|
||
|
|
||
|
return (
|
||
|
<TextField
|
||
|
label="Name"
|
||
|
onChange={onChange}
|
||
|
helperText="Example: My Survival World"
|
||
|
FormHelperTextProps={{ sx: { ml: 0 } }}
|
||
|
required
|
||
|
/>
|
||
|
);
|
||
|
}
|