[FEATURE] Mutable Servers & Edit UI (#8)

Co-authored-by: Dunemask <dunemask@gmail.com>
Reviewed-on: https://gitea.dunemask.dev/elysium/minecluster/pulls/8
This commit is contained in:
dunemask 2024-01-23 20:10:00 +00:00
parent 23efaafe1d
commit 3d73f69678
19 changed files with 291 additions and 35 deletions

View file

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