mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
16a6e1439e
- 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>
14 lines
403 B
Plaintext
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} />
|