interface LoadingScreenProps { message?: string; } export function LoadingScreen({ message = "Loading..." }: LoadingScreenProps) { return (
{message}