()
| 73 | const Total = () => <small>Total: {useStore(friendsTotal)}</small> |
| 74 | |
| 75 | const FetchingStatus = () => { |
| 76 | const pending = useStore(fetchUser.pending) |
| 77 | |
| 78 | return ( |
| 79 | <p> |
| 80 | <small>Status: {pending ? 'fetching...' : 'ready'}</small> |
| 81 | </p> |
| 82 | ) |
| 83 | } |
| 84 | const UserList = () => { |
| 85 | const selectUser = useEvent(selectUserEvent) |
| 86 |
nothing calls this directly
no test coverage detected
searching dependent graphs…