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.
SuspenseListContext
1 parent 19013bf commit 1afe035Copy full SHA for 1afe035
packages/solid/src/render/Suspense.ts
@@ -25,7 +25,7 @@ interface SuspenseListState extends Array<SuspenseListRegisteredState> {
25
26
const suspenseListEquals = (a: SuspenseListRegisteredState, b: SuspenseListRegisteredState) =>
27
a.showContent === b.showContent && a.showFallback === b.showFallback;
28
-const SuspenseListContext = createContext<SuspenseListContextType>();
+const SuspenseListContext = /* #__PURE__ */ createContext<SuspenseListContextType>();
29
30
/**
31
* **[experimental]** Controls the order in which suspended content is rendered
0 commit comments