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

Function AnimationCards

src/showcase/ui-group/AnimationCards.tsx:21–33  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

19]
20
21const AnimationCards = () => {
22 return (
23 <div>
24 <div className="grid grid-cols-2 gap-4 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
25 {data.map((item) => (
26 <Link href={item.link} key={item.id}>
27 <Card title={item.title}>{item.component}</Card>
28 </Link>
29 ))}
30 </div>
31 </div>
32 )
33}
34
35export default AnimationCards

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected