import React, { useContext } from 'react' import { WizardContext } from './context/wizardStore' import Input from '../input' export default function Contact() { const { state, onChangeEvent } = useContext(WizardContext) const { name, email, street, zip, city } = state.formData return ( <> ) }