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

15 lines
331 B
React
Raw Normal View History

import TextField from "@mui/material/TextField";
export default function BackupIdOption(props) {
const { onChange } = props;
return (
<TextField
label="S3 Access Key ID"
onChange={onChange}
helperText="Example: s3-access-key-id"
FormHelperTextProps={{ sx: { ml: 0 } }}
required
/>
);
}