first commit

This commit is contained in:
Samandar Turgunboyev
2025-12-15 18:43:01 +05:00
parent 6bf86f39c6
commit 55163536b8

View File

@@ -1,10 +1,11 @@
import Profile from '@/features/profile/ui/Profile';
import { Suspense } from 'react';
const page = () => {
return (
<div>
<Suspense>
<Profile />
</div>
</Suspense>
);
};