💫 Example - Update ContextMenuCard

This commit is contained in:
Dominic Go 2021-11-25 18:01:08 +08:00
parent e745dda658
commit 191f9e0154

View File

@ -11,6 +11,8 @@ export function ContextMenuCard(props: {
title?: string;
subtitle?: string;
description?: string[];
children?: JSX.Element;
}) {
const menuContext = useMenuContext();
@ -65,6 +67,7 @@ export function ContextMenuCard(props: {
{description}
</Text>
))}
{props.children}
</View>
</View>
);