()
| 18 | const SomeContext = createActorContext(someMachine); |
| 19 | |
| 20 | const Component = () => { |
| 21 | const value = SomeContext.useSelector((state) => state.value as string); |
| 22 | |
| 23 | return <div data-testid="value">{value}</div>; |
| 24 | }; |
| 25 | |
| 26 | const App = () => { |
| 27 | return ( |
nothing calls this directly
no test coverage detected