base notification socket

This commit is contained in:
hamid zarghami
2025-12-11 11:47:54 +03:30
parent 684d16ca7d
commit 610a82c1d5
4 changed files with 81 additions and 1 deletions
+3
View File
@@ -40,6 +40,7 @@ import ReviewsList from '@/pages/review/List'
import DetailReview from '@/pages/review/Detail'
import PagersList from '@/pages/pager/List'
import NotificationsList from '@/pages/notifications/List'
import Notification from '@/components/Notification'
const MainRouter: FC = () => {
const { hasSubMenu } = useSharedStore()
@@ -103,6 +104,8 @@ const MainRouter: FC = () => {
</div>
</div>
<Footer />
<Notification />
</div>
)
}