13 lines
348 B
TypeScript
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 <></>;
|
|
};
|