import { Button } from "@/components/ui/button"; import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, } from "@/components/ui/drawer" import { Textarea } from "./ui/textarea"; import { CodeIcon } from "@radix-ui/react-icons"; import { Event as NostrEvent } from "nostr-tools"; interface ViewRawButtonProps { event: NostrEvent; } export default function ViewRawButton({ event }: ViewRawButtonProps) { return ( Raw Event This shows the raw event data.
); }