@ethora/chat-component
Version:
1. npm create vite@latest 2. select name of project, select type (react/js) 3. cd project-name 4. npm i 5. npm i @ethora/chat-component 6. go to file src/App.tsx and replace it with this code
12 lines (11 loc) • 337 B
TypeScript
import { default as React } from 'react';
import { IConfig, IRoom } from '../../types/types';
interface ChatRoomItemProps {
chat: IRoom;
index: number;
isChatActive: boolean;
performClick: (chat: IRoom) => void;
config: IConfig;
}
declare const ChatRoomItem: React.FC<ChatRoomItemProps>;
export default ChatRoomItem;