()
| 407 | const store = createExternalStore({ a: 0, b: 0 }); |
| 408 | |
| 409 | function A() { |
| 410 | const a = useSyncExternalStore( |
| 411 | store.subscribe, |
| 412 | () => store.getState().a |
| 413 | ); |
| 414 | return <Text text={'A' + a} />; |
| 415 | } |
| 416 | function B() { |
| 417 | const b = useSyncExternalStore( |
| 418 | store.subscribe, |
nothing calls this directly
no test coverage detected