({ contributorsByRepo }: ExamplesSectionProps)
| 8 | } |
| 9 | |
| 10 | export default function ExamplesSection({ contributorsByRepo }: ExamplesSectionProps) { |
| 11 | return ( |
| 12 | <Section id="examples" title="Examples" className="py-12" center> |
| 13 | {/* Wide code example */} |
| 14 | <div className="mb-4"> |
| 15 | <CodeExample compact /> |
| 16 | </div> |
| 17 | |
| 18 | {/* Repo cards */} |
| 19 | <ExampleListSection contributorsByRepo={contributorsByRepo} standalone /> |
| 20 | </Section> |
| 21 | ); |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected