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