atproto explorer
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 6 lines 221 B view raw
1import { setNotif } from "../layout"; 2 3export const addToClipboard = (text: string) => { 4 navigator.clipboard.writeText(text); 5 setNotif({ show: true, icon: "lucide--clipboard-check", text: "Copied to clipboard" }); 6};