From b1b57abb52f137f8bd3baf78a7fbe5f577ffe7d8 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Thu, 3 Sep 2020 00:24:37 +0200 Subject: [PATCH] use right type for input --- components/wizard/input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/wizard/input.tsx b/components/wizard/input.tsx index 58bd44c..743784e 100644 --- a/components/wizard/input.tsx +++ b/components/wizard/input.tsx @@ -2,7 +2,7 @@ import React from 'react' import InputWrapper from './inputWrapper' -interface InputProps extends React.InputHTMLAttributes { +interface InputProps extends React.InputHTMLAttributes { label: string }