A two-column layout with a fixed-width sidebar and a flexible main area. Commonly used to pair a custom sidebar (cart, dashboard) with <ChatView />.
<ChatView />
import { ChatView, SidebarLayout } from "@alexkroman1/aai-ui";function OrderPanel() { return <div>Cart</div>;}function App() { return ( <SidebarLayout sidebar={<OrderPanel />}> <ChatView /> </SidebarLayout> );} Copy
import { ChatView, SidebarLayout } from "@alexkroman1/aai-ui";function OrderPanel() { return <div>Cart</div>;}function App() { return ( <SidebarLayout sidebar={<OrderPanel />}> <ChatView /> </SidebarLayout> );}
A two-column layout with a fixed-width sidebar and a flexible main area. Commonly used to pair a custom sidebar (cart, dashboard) with
<ChatView />.