| 6 | | "UI Components"; |
| 7 | |
| 8 | export interface DemoItem { |
| 9 | id: string; |
| 10 | title: string; |
| 11 | description: string; |
| 12 | category: DemoCategory; |
| 13 | emoji: string; |
| 14 | prompt: string; |
| 15 | } |
| 16 | |
| 17 | export const DEMO_EXAMPLES: DemoItem[] = [ |
| 18 | { |
nothing calls this directly
no outgoing calls
no test coverage detected