@gpa-gemstone/react-interactive
Version:
Interactive UI Components for GPA products
14 lines (13 loc) • 333 B
TypeScript
import * as React from 'react';
/**
* Props interface for LoadingScreen.
*/
interface IProps {
Show: boolean;
}
/**
* Functional component for rendering loading screen.
* @param props Properties for the loading screen component.
*/
declare const LoadingScreen: React.FunctionComponent<IProps>;
export default LoadingScreen;