chat-frontend-library
Version:
``` npm install chat-frontend-library --save ```
10 lines (9 loc) • 630 B
TypeScript
import Chat, { IChatProps } from "./components/ChatAndChatList/ChatWrapper";
import ChatList, { IChatListProps } from "./components/ChatAndChatList/ChatListWrapper";
import ChatLib from "./components/Main/ChatLib";
import { rootMiddleware, rootReducer, rootReducers } from "./store";
import { commonApi } from "./api/commonApi";
import { chatApi } from "./api/chatApi";
import { chatAppSlice } from "./service/chatApp.slice";
import { LS_TOKEN_KEY } from "./consts/consts";
export { ChatLib, rootMiddleware, rootReducer, rootReducers, ChatList, IChatListProps, Chat, IChatProps, chatApi, chatAppSlice, commonApi, LS_TOKEN_KEY, };