import React from 'react';
import { SplashPage } from '../../pages';
import type { SuiteWrapperProps } from '../../types';

/**
 * Determines whether we show the MainNav immediately or show a full page splash screen.
 */
export function SplashHandler<AppData>({ children, loading }: SuiteWrapperProps<AppData>) {
    if (!loading) return <>{children}</>;

    return <SplashPage />;
}
