()
| 70 | ); |
| 71 | |
| 72 | export 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 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected