"use client";
import { LoadingSkeleton } from "./loading-skeleton";
import { PageBackground } from "./page-background";
type TestLoadingScreenProps = {
title?: string;
subtitle?: string;
locale?: string;
};
export default function TestLoadingScreen(_props: TestLoadingScreenProps) {
return (
<>
>
);
}