| 6 | import { Shell } from '../Shell'; |
| 7 | |
| 8 | interface CategoryPageProps { |
| 9 | category: Category; |
| 10 | components: UiComponent[]; |
| 11 | } |
| 12 | |
| 13 | export function CategoryPage({ category, components }: CategoryPageProps) { |
| 14 | const canvases = components.map((component, index) => ( |
nothing calls this directly
no outgoing calls
no test coverage detected