---
order: 3
meta:
title: Buttons
description: Using button components
---
# Buttons
Use the `` component to create a message with a button, and use the `onClick` callback to respond to button clicks.
```jsx
import { Button } from "reacord"
function Counter() {
const [count, setCount] = useState(0)
return (
<>
You've clicked the button {count} times.