From 77323828c8aff051c52bf14b157f1e5344d48b01 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Thu, 3 Sep 2020 00:33:57 +0200 Subject: [PATCH] again fix children type /o\ --- components/wizard/inputWrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/wizard/inputWrapper.tsx b/components/wizard/inputWrapper.tsx index 3b06ec6..d744098 100644 --- a/components/wizard/inputWrapper.tsx +++ b/components/wizard/inputWrapper.tsx @@ -4,7 +4,7 @@ import Required from './required' export default function Input(props: { label: string required: boolean - children: ReactNode + children: React.ReactNode }) { const { label, required, children } = props