| 11 | } |
| 12 | |
| 13 | interface Template { |
| 14 | id: string; |
| 15 | name: string; |
| 16 | description: string; |
| 17 | html: string; |
| 18 | data_description: string; |
| 19 | component_type?: string; |
| 20 | component_data?: Record<string, unknown>; |
| 21 | version: number; |
| 22 | } |
| 23 | |
| 24 | export function TemplateLibrary({ open, onClose }: TemplateLibraryProps) { |
| 25 | const { agent } = useAgent(); |
nothing calls this directly
no outgoing calls
no test coverage detected