| 6 | const tabs = ['Home', 'Docs', 'Components', 'Effects'] |
| 7 | |
| 8 | interface TabProps { |
| 9 | text: string |
| 10 | selected: boolean |
| 11 | setSelected: (text: string) => void |
| 12 | } |
| 13 | |
| 14 | const Tab = ({ text, selected, setSelected }: TabProps) => { |
| 15 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected