瀏覽代碼

Fix Navbar prop types

Tatiana Inama 7 年之前
父節點
當前提交
9c954f287e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      recipes/src/components/Navbar/index.tsx

+ 1 - 1
recipes/src/components/Navbar/index.tsx

@@ -8,7 +8,7 @@ type NavbarProps = {
     label: string,
     onClick: () => void,
   }[],
-  children?: ReactElement[],
+  children?: ReactElement | ReactElement[],
   contentClassName?: string,
 }
 export default function Navbar(props: NavbarProps){