uchill/front_material/app/(protected)/payment/page.tsx

21 lines
673 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use client';
import dynamic from 'next/dynamic';
import { LoadingSpinner } from '@/components/common/LoadingSpinner';
const ProfilePaymentTab = dynamic(
() => import('@/components/profile/ProfilePaymentTab').then((m) => ({ default: m.ProfilePaymentTab })),
{ ssr: false, loading: () => <LoadingSpinner size="medium" /> }
);
export default function PaymentPage() {
return (
<div style={{ padding: 24 }} data-tour="payment-root">
<h1 style={{ fontSize: 24, fontWeight: 600, marginBottom: 24, color: 'var(--md-sys-color-on-surface)' }}>
Подписки и оплата
</h1>
<ProfilePaymentTab />
</div>
);
}