()
| 90 | ] |
| 91 | |
| 92 | const 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 | |
| 106 | export default ButtonCards |
nothing calls this directly
no outgoing calls
no test coverage detected