⚡ You're viewing a live demo of ChimerAI. Data resets daily at midnight UTC.Get the CLI →

Shared UI Components

Reusable React components for the frontend.

Components (to be implemented)

  • ChatWindow - Chat interface component
  • MessageBubble - Individual message display
  • InputBar - Message input component
  • Sidebar - Navigation sidebar
  • UserAvatar - User avatar component
  • LoadingSpinner - Loading indicator
  • ErrorBoundary - Error handling wrapper

Usage

import { ChatWindow } from '@chimerai/ui';

function App() {
  return <ChatWindow messages={messages} onSendMessage={handleSend} />;
}

Development

# Install dependencies
pnpm install

# Build package
pnpm build

# Watch mode
pnpm dev
ChimerAI Docs · Back to Demo