MCPcopy
hub / github.com/agentsmd/agents.md / ExampleListSection

Function ExampleListSection

components/ExampleListSection.tsx:85–105  ·  view source on GitHub ↗
({
  contributorsByRepo = {},
  standalone = false,
}: ExampleListSectionProps)

Source from the content-addressed store, hash-verified

83);
84
85const ExampleListSection = ({
86 contributorsByRepo = {},
87 standalone = false,
88}: ExampleListSectionProps) => {
89 if (standalone) {
90 return (
91 <div className="max-w-6xl mx-auto">
92 <InnerGrid contributorsByRepo={contributorsByRepo} />
93 </div>
94 );
95 }
96
97 return (
98 <section className="px-6 pb-12 -mt-36">
99 <div className="max-w-6xl mx-auto">
100 <h2 className="text-3xl font-semibold mb-6">Who uses AGENTS.md?</h2>
101 <InnerGrid contributorsByRepo={contributorsByRepo} />
102 </div>
103 </section>
104 );
105};
106
107interface ExampleCardPropsExtended {
108 repo: RepoCardProps;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected