| 3 | export const pathToComponents = path.resolve(process.cwd(), './components'); |
| 4 | |
| 5 | export interface Category { |
| 6 | name: string; |
| 7 | description: string; |
| 8 | components: Component[]; |
| 9 | } |
| 10 | |
| 11 | export interface Component { |
| 12 | slug: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…