From 0443e76384e8cd6e68c4925ac39843f307e55064 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 17 Sep 2020 16:53:24 -0700 Subject: [PATCH] Fix type --- src/components/Button/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Button/Button.tsx b/src/components/Button/Button.tsx index 1b4fd941..9cc2d0fc 100644 --- a/src/components/Button/Button.tsx +++ b/src/components/Button/Button.tsx @@ -6,7 +6,7 @@ import Menu from '../../../assets/menu' import Link from '../../../assets/link' interface Props { - type: string + type: string | null click: () => void }