We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df369c8 commit ce761d3Copy full SHA for ce761d3
src/Loader.tsx
@@ -1,5 +1,5 @@
1
import React, {ReactNode} from "react";
2
-import {ContextFunctionData, TableData} from "./contextTypes";
+import {ContextFunctionCellWithoutValue, TableData} from "./contextTypes";
3
4
export enum LoadingIcon {
5
CIRCLE,
@@ -18,7 +18,7 @@ export enum LoadingIcon {
18
19
export interface ILoaderProps {
20
loadingIcon?: LoadingIcon;
21
- loadingOverlay?: ContextFunctionData<ReactNode>;
+ loadingOverlay?: ContextFunctionCellWithoutValue<ReactNode>;
22
data?: TableData;
23
}
24
0 commit comments