aef8791151
- Added Appshell component with responsive navbar and main content area - Integrated ColorSchemeToggle for light/dark mode switching - Created Welcome component with styled title and introductory text - Developed ChatPage for LLM interaction with WebSocket support - Implemented Biblioteca for managing notes with rich text editor - Added LoginPage for user authentication with error handling - Introduced MessageList and MessageBubble components for chat messages - Styled components with CSS modules for consistent design
8 lines
119 B
TypeScript
8 lines
119 B
TypeScript
import { Welcome } from './Welcome';
|
|
|
|
export default {
|
|
title: 'Welcome',
|
|
};
|
|
|
|
export const Usage = () => <Welcome />;
|