# Using the Pre-built Chat Component

## Step 2 - Implement the Chat Component

SSK provides a pre-built chat component with AI support. Here’s how to use it:

```tsx
import Chat from './Chat'

// Include the chat component in your page
function Example() {
  return (
    <div>
      <h1>Chat with our AI Assistant</h1>
      <Chat />
    </div>
  )
}
```
