import { useContext } from 'react' import { WizardContext, ACTIONS } from '../context/wizardStore' import Form from 'react-bootstrap/Form' import Col from 'react-bootstrap/Col' export default function Contact() { const { state, dispatch } = useContext(WizardContext) const { multipleDays, startDate, endDate } = state return ( <> Name E-Mail Straße PLZ Stadt ) }