import React, { useContext } from 'react' import { WizardContext } from './context/wizardStore' import Input from './input' export default function Contact() { const { state, onChangeEvent } = useContext(WizardContext) const { purpose, destination, org } = state.formData return ( <> ) }