()
| 89 | const Total = () => <small>Total: {useStore(friendsTotal)}</small> |
| 90 | |
| 91 | const FetchingStatus = () => { |
| 92 | const pending = useStore(fetchUser.pending) |
| 93 | |
| 94 | return ( |
| 95 | <p> |
| 96 | <small>Status: {pending ? 'fetching...' : 'ready'}</small> |
| 97 | </p> |
| 98 | ) |
| 99 | } |
| 100 | |
| 101 | const UserList = () => { |
| 102 | const selectUser = useEvent(selectUserEvent) |
nothing calls this directly
no test coverage detected
searching dependent graphs…