Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 50x 50x | import { useForm } from "react-hook-form";
import { Button, Form } from "react-bootstrap";
export default function DeleteReposForm({ submitAction }) {
const {
register,
formState: { errors },
handleSubmit,
} = useForm();
return (
<Form onSubmit={handleSubmit(submitAction)} data-testid="DeleteReposForm">
<Form.Group className="mb-3">
<Form.Label htmlFor="prefix">Repository Prefix</Form.Label>
<Form.Control
id="prefix"
type="text"
isInvalid={Boolean(errors.prefix)}
data-testid="DeleteReposForm-prefix"
{...register("prefix", {
required: "Repository Prefix is required.",
})}
/>
<Form.Control.Feedback type="invalid">
{errors.prefix?.message}
</Form.Control.Feedback>
</Form.Group>
<Form.Group>
<Button type="submit" data-testid="DeleteReposForm-submit">
Delete Empty Matching Repos
</Button>
</Form.Group>
</Form>
);
}
|