UNPKG

@enumura/chatbot-flow-editor

Version:

Visual chatbot flow editor - Development tool for creating conversational flows

24 lines (19 loc) 573 B
// CSS styles import './index.css' // Main components export { default as ChatbotEditor } from './components/chatbot-editor' // UI components export { Button } from './components/ui/button' export { Card, CardContent, CardHeader, CardTitle } from './components/ui/card' export { Input } from './components/ui/input' export { ScrollArea } from './components/ui/scroll-area' // Types export type { ChatNode, ChatbotFlow, ChatOption, NodePosition, NodePositions } from './types/chatbot' // Utilities export { cn } from './utils/utils'