
Co-authored-by: Dunemask <dunemask@gmail.com> Reviewed-on: https://gitea.dunemask.dev/elysium/minecluster/pulls/6
14 lines
331 B
JavaScript
14 lines
331 B
JavaScript
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
|
|
/>
|
|
);
|
|
}
|