# Additional Examples Essential examples for common patterns and combinations. All use flat props API. --- ## Layout Patterns ### Sidebar Chat ```tsx export default function DashboardWithChat() { return (
{/* Main content */}
); } ``` ### Full Page Chat ```tsx export default function SupportPage() { return (

Customer Support

); } ``` --- ## Size Variations ### Responsive sizing ```tsx ``` ### Calculated dimensions ```tsx ``` --- ## Theming Combinations ### Brand theme with custom sizing ```tsx ``` ### Dark theme ```tsx ``` ### Inline without header ```tsx ``` --- ## Complete Host Component Example ```tsx import { Outlet } from "react-router"; import { AgentforceConversationClient } from "@salesforce/ui-bundle-template-feature-react-agentforce-conversation-client"; export default function AgentChatHost() { return ( <> ); } ``` --- For complete style token reference, see `references/style-tokens.md` or `node_modules/@salesforce/agentforce-conversation-client/README.md`.