export default function LoadingScreen({ text = 'Загрузка...', subText = '' }) { return (
{text}
{subText && (
{subText}
)}
); }