| 4 | import { CategoriesList } from './CategoriesList/CategoriesList'; |
| 5 | |
| 6 | interface HomePageProps { |
| 7 | componentsCountByCategory: Record<string, number>; |
| 8 | } |
| 9 | |
| 10 | export function HomePage({ componentsCountByCategory }: HomePageProps) { |
| 11 | const allComponentsCount = Object.keys(componentsCountByCategory).reduce( |
nothing calls this directly
no outgoing calls
no test coverage detected