Files
LiquidCode_Frontend/src/views/home/group/chat/Chat.tsx
Виталий Лавшонок e904297bb9 user role controller
2025-11-19 22:28:15 +03:00

18 lines
554 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
);
};