| 7 | import Card from './Card' |
| 8 | |
| 9 | interface ToggleCardProps { |
| 10 | title: string |
| 11 | link: string |
| 12 | component: React.JSX.Element |
| 13 | hide?: boolean |
| 14 | } |
| 15 | const data: ToggleCardProps[] = [ |
| 16 | { |
| 17 | title: 'Simple Toggle', |
nothing calls this directly
no outgoing calls
no test coverage detected