[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,11 +1,12 @@
import TextField from "@mui/material/TextField";
export default function BackupHostOption(props) {
const { onChange } = props;
const { value, onChange } = props;
return (
<TextField
label="Backup Host"
onChange={onChange}
value={value}
helperText="Example: s3.mydomain.com"
FormHelperTextProps={{ sx: { ml: 0 } }}
required