15 lines
331 B
React
15 lines
331 B
React
![]() |
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
|
||
|
/>
|
||
|
);
|
||
|
}
|