Account details
123456789101112131415161718192021222324252627
// Maps pasted text to form fields using their labels.
// Update a label or add another <Input />, then copy your text and paste details.
import FormGroup from "./components/FormGroup"
import Input from "./components/Input"
export default function FormDetails() {
return (
<FormGroup
groupId="account_details"
groupLabel="Account details"
>
<Input
label="Full name"
type="text"
/>
<Input
label="Sort code"
type="text"
/>
<Input
label="Account number"
type="text"
/>
</FormGroup>
)
}