update readme

This commit is contained in:
MapleLeaf
2022-01-09 03:06:12 -06:00
parent 41bbb5efe3
commit b24fe04b2f

View File

@@ -1,3 +1,23 @@
# reacord
coming soon™
Create interactive Discord messages using React! [Visit the docs to get started.](https://reacord.fly.dev/guides/getting-started)
<!-- prettier-ignore -->
```tsx
import * as React from "react"
import { Embed, Button } from "reacord"
function Counter() {
const [count, setCount] = React.useState(0)
return (
<>
<Embed title="Counter">
This button has been clicked {count} times.
</Embed>
<Button onClick={() => setCount(count + 1)}>
+1
</Button>
</>
)
}
```