pl-fe: migrations from tailwind

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-01-27 17:43:30 +01:00
parent bb8e713d29
commit ddf88e406e
9 changed files with 151 additions and 61 deletions

View File

@ -1,11 +1,11 @@
import React from 'react';
import { ChatProvider } from 'pl-fe/contexts/chat-context';
import ChatPage from 'pl-fe/features/chats/components/chats-page/chats-page';
import ChatsPage from 'pl-fe/features/chats/components/chats-page/chats-page';
const ChatIndex: React.FC = () => (
<ChatProvider>
<ChatPage />
<ChatsPage />
</ChatProvider>
);