Files
pfadi-bussle/components/book/reason.tsx
Thomas Ruoff dbe3904759 move contexts all out in own toplevel dir
- rename wizard to book
2021-06-16 23:36:28 +02:00

27 lines
575 B
TypeScript

import React, { useContext } from 'react'
import { BookContext } from '../../context/book'
import Input from '../input'
export default function Contact() {
const { state, onChangeEvent } = useContext(BookContext)
const { purpose, destination } = state.formData
return (
<>
<Input
label="Zweck der Fahrt"
name="purpose"
value={purpose}
onChange={onChangeEvent}
/>
<Input
label="Ziel der Fahrt"
name="destination"
value={destination}
onChange={onChangeEvent}
/>
</>
)
}