()
| 414 | return <Text text={'A' + a} />; |
| 415 | } |
| 416 | function B() { |
| 417 | const b = useSyncExternalStore( |
| 418 | store.subscribe, |
| 419 | () => store.getState().b |
| 420 | ); |
| 421 | return <Text text={'B' + b} />; |
| 422 | } |
| 423 | |
| 424 | function App() { |
| 425 | return ( |
nothing calls this directly
no test coverage detected