MCPcopy Create free account
hub / github.com/effector/effector / FetchingStatus

Function FetchingStatus

examples/serverless-ssr/src/app.tsx:91–99  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

89const Total = () => <small>Total: {useStore(friendsTotal)}</small>
90
91const FetchingStatus = () => {
92 const pending = useStore(fetchUser.pending)
93
94 return (
95 <p>
96 <small>Status: {pending ? 'fetching...' : 'ready'}</small>
97 </p>
98 )
99}
100
101const UserList = () => {
102 const selectUser = useEvent(selectUserEvent)

Callers

nothing calls this directly

Calls 1

useStoreFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…