From 0111a8d13ca1b63f3d4cd718865cf583c153d48f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Tue, 5 Jan 2021 21:41:06 +0900 Subject: [PATCH] types: fixed typing --- components/Container.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Container.tsx b/components/Container.tsx index e2f8921..3e37aa4 100644 --- a/components/Container.tsx +++ b/components/Container.tsx @@ -8,7 +8,7 @@ const Container = ({ className, children }:ContainerProps): JSX.Element => { interface ContainerProps { className?: string - children: JSX.Element + children: JSX.Element | JSX.Element[] } export default Container \ No newline at end of file