You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
498 B
JavaScript
17 lines
498 B
JavaScript
import {FormController, Input, Button} from '~/components/form'
|
|
|
|
export default function InputAddress(){
|
|
return (
|
|
<>
|
|
<h2>Enter Address</h2>
|
|
<FormController>
|
|
<Input name="name"/>
|
|
<Input label="Street (line 1)" name="street1"/>
|
|
<Input label="Street (line 2)" name="street2"/>
|
|
<Input label="City" name="city"/>
|
|
<Input label="State / Province" name="state"/>
|
|
<Input label="Postal Code" name="zip"/>
|
|
</FormController>
|
|
</>
|
|
)
|
|
} |