interface IProps { title?: string; description?: string; } const LoadingView = ({ title, description }: IProps) => { return (
{description || "Please wait a moment while we load the data."}