fix(system): DropdownMenu children prop type

This commit is contained in:
Pavel Prichodko 2022-03-31 15:14:22 +02:00
parent 7ebd125370
commit 45f8afd4e0
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ const DropdownMenuTrigger = (props: TriggerProps) => {
}
interface MenuProps extends DropdownMenuContentProps {
children: React.ReactElement[] | React.ReactElement
children: React.ReactNode
}
const DropdownMenu = (props: MenuProps) => {