@gpa-gemstone/react-interactive
Version:
Interactive UI Components for GPA products
13 lines (12 loc) • 307 B
TypeScript
/**
* 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: (props: IProps) => JSX.Element | null;
export default LoadingScreen;