UNPKG

@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

8 lines (7 loc) 208 B
import { MODAL_TYPES } from '../types'; export type ModalType = (typeof MODAL_TYPES)[keyof typeof MODAL_TYPES]; export interface ModalFile { fileName: string; fileURL: string; mimetype: string; }