[TS] Typecheck skipping Src

This commit is contained in:
Dunemask 2024-03-29 16:58:17 -06:00
parent e1fe6c2f3b
commit 8c15dd6752
41 changed files with 43 additions and 2 deletions

View file

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