import { useState } from 'react' import { ChevronDown } from 'lucide-react' type Props = { url: string; onOpenInApp: (url: string) => void; onOpenSystem: (url: string) => void } export function OpenWithMenu({ url, onOpenInApp, onOpenSystem }: Props) { const [open, setOpen] = useState(false) return ( {open && (
)}
) }