This repository was archived by the owner on Feb 8, 2024. It is now read-only.
This repository was archived by the owner on Feb 8, 2024. It is now read-only.
Support functions #2
Closed
Description
Add new support functions
export const isReady = (status) => status === fetchStatus.ready
export const isFailed = (status) => status === fetchStatus.failed
export const isInitial = (status) => status === fetchStatus.initial
export const isLoading = (status) => status === fetchStatus.loading
what to write
isReady(status)
instead
status === fetchingStatus.ready