Files
LiquidCode_Frontend/src/views/home/group/contests/Contests.tsx
Виталий Лавшонок 56b6f9b339 group posts
2025-11-15 22:23:26 +03:00

13 lines
348 B
TypeScript

import { useEffect } from 'react';
import { useAppDispatch } from '../../../../redux/hooks';
import { setMenuActiveGroupPage } from '../../../../redux/slices/store';
export const Contests = () => {
const dispatch = useAppDispatch();
useEffect(() => {
dispatch(setMenuActiveGroupPage('contests'));
}, []);
return <></>;
};