use right type for input

This commit is contained in:
Thomas Ruoff
2020-09-03 00:24:37 +02:00
committed by Thomas Ruoff
parent 7e284a6421
commit b1b57abb52

View File

@@ -2,7 +2,7 @@ import React from 'react'
import InputWrapper from './inputWrapper'
interface InputProps extends React.InputHTMLAttributes<T> {
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
label: string
}