minecluster/src/components/server-options/NameOption.jsx

15 lines
316 B
React
Raw Normal View History

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
/>
);
}