fix all type errors

This commit is contained in:
Thomas Ruoff
2021-02-15 23:29:25 +01:00
parent 85a7b54a13
commit 3386fb3928
14 changed files with 123 additions and 132 deletions

View File

@@ -11,7 +11,7 @@ import { IDocProps } from '../interfaces/IDocProps'
const EXAMPLE_ADDRESS = 'Max Mustermann\nMusterstr. 73\n12345 Musterstadt'
interface IProps extends IDocProps {
onChange: () => void
onChange: (name: string, event: React.ChangeEvent<{ value: string }>) => void
}
export default function LetterOptions(props: IProps) {