From f6d54b12a686ba40a6a5bafa9f02378ef5270e40 Mon Sep 17 00:00:00 2001 From: boomchanotai Date: Thu, 3 Oct 2024 00:00:43 +0700 Subject: [PATCH] fix: props type error --- lib/components/Menubar/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/components/Menubar/index.tsx b/lib/components/Menubar/index.tsx index b3d64be..20e073f 100644 --- a/lib/components/Menubar/index.tsx +++ b/lib/components/Menubar/index.tsx @@ -4,7 +4,8 @@ import React from 'react' import { cn } from '@/utils' -const MenubarMenu = MenubarPrimitive.Menu +const MenubarMenu: React.FC = + MenubarPrimitive.Menu const MenubarGroup = MenubarPrimitive.Group