import { ContextMenu } from '@tamagui/context-menu' import { Calendar, Check, ChevronRight } from '@tamagui/lucide-icons-2' import React from 'react' import { Text, View, YStack } from 'tamagui' /** * Note: you'll want to use createMenu() to customize further. */ export function ContextMenuDemo() { const [bookmarksChecked, setBookmarksChecked] = React.useState(true) const [native, setNative] = React.useState(true) const onSelect = () => { console.info('onSelect') } return ( Right Click or Long Press {() => { return ( Your Preview here ) }} About Notes Settings Calendar Locked Notes Delete all {/* Submenu */} Actions Note settings Create note Delete all notes Sync notes Mark as read Enable Native ) }