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 Profile from '@/features/profile/ui/Profile';
import { Suspense } from 'react';
const page = () => { const page = () => {
return ( return (
<div> <Suspense>
<Profile /> <Profile />
</div> </Suspense>
); );
}; };