| 8 | LogBox.ignoreLogs(["Open debugger"]); |
| 9 | |
| 10 | interface CardsProps { |
| 11 | numColumns?: number; |
| 12 | } |
| 13 | |
| 14 | export default function Cards({ numColumns = 1 }: CardsProps) { |
| 15 | const listRef = useRef<LegendListRef>(null); |
nothing calls this directly
no outgoing calls
no test coverage detected