| 16 | const SlideToggleContext = createContext<SlideToggleContextType | null>(null) |
| 17 | |
| 18 | interface LabelProps { |
| 19 | children: ReactNode |
| 20 | isOn: boolean |
| 21 | } |
| 22 | |
| 23 | const Label: React.FC<LabelProps> = ({ children, isOn }) => { |
| 24 | const context = useContext(SlideToggleContext) |
nothing calls this directly
no outgoing calls
no test coverage detected