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

15 lines
327 B
React
Raw Normal View History

import TextField from "@mui/material/TextField";
export default function BackupHostOption(props) {
const { onChange } = props;
return (
<TextField
label="Backup Host"
onChange={onChange}
helperText="Example: s3.mydomain.com"
FormHelperTextProps={{ sx: { ml: 0 } }}
required
/>
);
}