1 snippet
Composable building blocks you own and customize.
⌘K command palette with fuzzy search
"use client"; import { useState, useEffect, useRef } from "react"; import { Search } from "lucide-react"; type Command = { id: string; label: string; group: string; action: () => void };