MCPcopy Create free account
hub / github.com/code100x/cms / CommandMenuProps

Interface CommandMenuProps

src/components/search/CommandMenu.tsx:29–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27import { useCallback, useEffect } from 'react';
28
29interface CommandMenuProps {
30 icon: string;
31 open: boolean;
32 onOpenChange: (open: boolean) => void;
33 commandSearchTerm: string;
34 onCommandSearchTermChange: (value: string) => void;
35 loading: boolean;
36 searchedVideos: TSearchedVideos[] | null;
37 onCardClick: (videoUrl: string) => void;
38 onClose: () => void;
39}
40
41export function CommandMenu({
42 icon,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected