MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / ProductsTable

Function ProductsTable

apps/baseai.dev/src/components/table-products.tsx:72–97  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

70);
71
72export const ProductsTable: React.FC = () => {
73 return (
74 <div className="overflow-x-auto">
75 <table className="min-w-full">
76 <TableHeader />
77 <tbody>
78 <TableRow
79 product={{ main: 'AI Pipes', sub: 'Agents' }}
80 description={<AIPipesDescription />}
81 href="/docs/pipe/quickstart"
82 />
83 <TableRow
84 product={{ main: 'AI Memory', sub: 'RAG' }}
85 description={<AIMemoryDescription />}
86 href="/docs/memory/quickstart"
87 />
88 <TableRow
89 product={{ main: 'AI Tools', sub: 'Self-healing' }}
90 description={<LangbaseStudioDescription />}
91 href="/docs/tools/quickstart"
92 />
93 </tbody>
94 </table>
95 </div>
96 );
97};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected