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

16 lines
364 B
TypeScript

// @ts-nocheck
import TextField from "@mui/material/TextField";
export default function NameOption(props) {
const { value, onChange } = props;
return (
<TextField
label="Name"
value={value ?? ""}
onChange={onChange}
helperText="Example: My Survival World"
FormHelperTextProps={{ sx: { ml: 0 } }}
required
/>
);
}