profile contests

This commit is contained in:
Виталий Лавшонок
2025-11-05 23:54:40 +03:00
parent c6303758e1
commit 4a65aa4b53
7 changed files with 273 additions and 32 deletions

View File

@@ -0,0 +1,19 @@
import { useEffect } from 'react';
import { useAppDispatch } from '../../../../redux/hooks';
import { setMenuActiveProfilePage } from '../../../../redux/slices/store';
const MissionsBlock = () => {
const dispatch = useAppDispatch();
useEffect(() => {
dispatch(setMenuActiveProfilePage('missions'));
}, []);
return (
<div className="h-full w-full relative flex items-center justify-center text-[60px] font-bold">
Пока пусто :(
</div>
);
};
export default MissionsBlock;