MCPcopy
hub / github.com/langflow-ai/langflow / CardsProps

Interface CardsProps

docs/src/components/Cards.tsx:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import React from "react";
2
3interface CardsProps {
4 cols?: 1 | 2 | 3;
5 children: React.ReactNode;
6}
7
8export default function Cards({ cols = 2, children }: CardsProps) {
9 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected