# Additional Examples
Essential examples for common patterns and combinations. All use flat props API.
---
## Layout Patterns
### Sidebar Chat
```tsx
export default function DashboardWithChat() {
return (
);
}
```
### Full Page Chat
```tsx
export default function SupportPage() {
return (
);
}
```
---
## 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/webapp-template-feature-react-agentforce-conversation-client-experimental";
export default function AgentChatHost() {
return (
<>
>
);
}
```
---
For complete style token reference, see `references/style-tokens.md` or `node_modules/@salesforce/agentforce-conversation-client/README.md`.