()
| 47 | ] |
| 48 | |
| 49 | const 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 | |
| 63 | export default ToggleCards |
nothing calls this directly
no outgoing calls
no test coverage detected