-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddressForm.tsx
54 lines (51 loc) · 1.14 KB
/
AddressForm.tsx
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import { FormWrapper } from './FormWrapper';
type AddressData = {
street: string;
city: string;
state: string;
zip: string;
};
type AddressFormProps = AddressData & {
updateFields: (fields: Partial<AddressData>) => void;
};
export function AddressForm({
street,
city,
state,
zip,
updateFields,
}: AddressFormProps) {
return (
<FormWrapper title="Address">
<label htmlFor="">Street</label>
<input
autoFocus
required
type="text"
value={street}
onChange={(e) => updateFields({ street: e.target.value })}
/>
<label htmlFor="">City</label>
<input
required
type="text"
value={city}
onChange={(e) => updateFields({ city: e.target.value })}
/>
<label htmlFor="">State</label>
<input
required
type="text"
value={state}
onChange={(e) => updateFields({ state: e.target.value })}
/>
<label htmlFor="">Zip</label>
<input
required
type="text"
value={zip}
onChange={(e) => updateFields({ zip: e.target.value })}
/>
</FormWrapper>
);
}