Merge pull request #19621 from shortgiraffe4/master

Change placeholder type from `Node` to `any` (Issue #19599)
This commit is contained in:
Arthur Ozga
2017-09-14 15:24:01 -07:00
committed by GitHub

View File

@@ -15,7 +15,7 @@ export interface LazyLoadProps {
children?: JSX.Element;
throttle?: number | boolean;
debounce?: number | boolean;
placeholder?: Node;
placeholder?: any;
unmountIfInvisible?: boolean;
}