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

Function ButtonCards

src/showcase/ui-group/ButtonCards.tsx:92–104  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

90]
91
92const ButtonCards = () => {
93 return (
94 <div>
95 <div className="grid grid-cols-2 gap-4 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
96 {data.map((item, index) => (
97 <Link href={item.link} key={index} className="no-underline">
98 <Card title={item.title}>{item.component}</Card>
99 </Link>
100 ))}
101 </div>
102 </div>
103 )
104}
105
106export default ButtonCards

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected