| 1 | import React from "react"; |
| 2 | |
| 3 | interface CardsProps { |
| 4 | cols?: 1 | 2 | 3; |
| 5 | children: React.ReactNode; |
| 6 | } |
| 7 | |
| 8 | export default function Cards({ cols = 2, children }: CardsProps) { |
| 9 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected