mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
cc8c945893
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
14 lines
406 B
Plaintext
14 lines
406 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/v2/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} />
|