MCPcopy Create free account
hub / github.com/SyntaxUI/syntaxui / ToggleCards

Function ToggleCards

src/showcase/ui-group/TextCards.tsx:49–61  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

47]
48
49const ToggleCards = () => {
50 return (
51 <div>
52 <div className="grid grid-cols-2 gap-4 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
53 {data.map((item, index) => (
54 <Link href={item.link} key={index} className="no-underline">
55 <Card title={item.title}>{item.component}</Card>
56 </Link>
57 ))}
58 </div>
59 </div>
60 )
61}
62
63export default ToggleCards

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected