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

Function TableRow

apps/baseai.dev/src/components/table-products.tsx:29–41  ·  view source on GitHub ↗
({ product, description, href })

Source from the content-addressed store, hash-verified

27}
28
29const TableRow: React.FC<TableRowProps> = ({ product, description, href }) => (
30 <tr>
31 <td className="w-[180px] p-2 align-top">
32 <Link href={href}>{product.main}</Link>
33 {product.sub && (
34 <div className="xtext-muted-foreground/50 mt-1 text-sm text-[#7f7db0]/50">
35 ({product.sub})
36 </div>
37 )}
38 </td>
39 <td className="p-2">{description}</td>
40 </tr>
41);
42
43const AIPipesDescription: React.FC = () => (
44 <>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected