18 lines
554 B
TypeScript
18 lines
554 B
TypeScript
import { useEffect } from 'react';
|
||
import { useAppDispatch } from '../../../../redux/hooks';
|
||
import { setMenuActiveGroupPage } from '../../../../redux/slices/store';
|
||
|
||
export const Chat = () => {
|
||
const dispatch = useAppDispatch();
|
||
|
||
useEffect(() => {
|
||
dispatch(setMenuActiveGroupPage('chat'));
|
||
}, []);
|
||
return (
|
||
<div className="h-full overflow-y-scroll thin-dark-scrollbar flex items-center justify-center font-bold text-liquid-white text-[50px]">
|
||
{' '}
|
||
Пока пусто :(
|
||
</div>
|
||
);
|
||
};
|