group posts
This commit is contained in:
12
src/views/home/group/contests/Contests.tsx
Normal file
12
src/views/home/group/contests/Contests.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
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 <></>;
|
||||
};
|
||||
Reference in New Issue
Block a user