add phone

This commit is contained in:
Thomas Ruoff
2020-11-08 23:04:14 +01:00
parent 242a636379
commit 650a7374ff
4 changed files with 14 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import Input from '../input'
export default function Contact() {
const { state, onChangeEvent } = useContext(WizardContext)
const { org, name, email, street, zip, city } = state.formData
const { org, name, email, phone, street, zip, city } = state.formData
return (
<>
@@ -25,6 +25,13 @@ export default function Contact() {
onChange={onChangeEvent}
required
/>
<Input
label="Telefon"
type="phone"
name="phone"
value={phone}
onChange={onChangeEvent}
/>
<Input
label="Straße"
name="street"

View File

@@ -11,6 +11,7 @@ interface WizardFormData {
destination: string
name: string
email: string
phone: string
street: string
zip: string
city: string
@@ -125,6 +126,7 @@ const initialState: WizardStoreState = {
destination: '',
name: '',
email: '',
phone: '',
street: '',
zip: '',
city: '',