We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ced2ba2 commit 352875aCopy full SHA for 352875a
packages/react-async/src/index.d.ts
@@ -187,21 +187,11 @@ export function IfPending<T>(props: {
187
initial?: boolean
188
state: AsyncState<T>
189
}): JSX.Element
190
-export function IfLoading<T>(props: {
191
- children?: PendingChildren<T>
192
- initial?: boolean
193
- state: AsyncState<T>
194
-}): JSX.Element
195
export function IfFulfilled<T>(props: {
196
children?: FulfilledChildren<T>
197
persist?: boolean
198
199
200
-export function IfResolved<T>(props: {
201
- children?: FulfilledChildren<T>
202
- persist?: boolean
203
204
205
export function IfRejected<T>(props: {
206
children?: RejectedChildren<T>
207
0 commit comments