| 4 | import ExampleListSection from "@/components/ExampleListSection"; |
| 5 | |
| 6 | interface ExamplesSectionProps { |
| 7 | contributorsByRepo: Record<string, { avatars: string[]; total: number }>; |
| 8 | } |
| 9 | |
| 10 | export default function ExamplesSection({ contributorsByRepo }: ExamplesSectionProps) { |
| 11 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected