Files
copilotkit__copilotkit/docs/snippets/copilot-ui.mdx
Tyler Slaton 16a6e1439e refactor(docs): reorganize, repurpose and generally improve documentation experience
- All CoAgents documentation has been improved or reevaluated in some way
- The coaents-starter has been simplified
- The coagents-starter now has a JS agent
- Expanded and unified examples in guides
- Quickstart has been improved in a number of ways
- Adding documentation about LangGraph interrupt

Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2025-02-10 18:54:53 -05:00

14 lines
403 B
Plaintext

import ComponentExamples from "@/snippets/component-examples.mdx";
First, import the default styles in your root component (typically `layout.tsx`) :
```tsx filename="layout.tsx"
import "@copilotkit/react-ui/styles.css";
```
<Callout type="info">
Copilot UI ships with a number of built-in UI patterns, choose whichever one you like.
</Callout>
<ComponentExamples components={props.components} />