From b24fe04b2fafac89f24c35560ef7b34227fbebeb Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Sun, 9 Jan 2022 03:06:12 -0600 Subject: [PATCH] update readme --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index caffcf8..5d8a236 100644 --- a/README.md +++ b/README.md @@ -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) + + +```tsx +import * as React from "react" +import { Embed, Button } from "reacord" + +function Counter() { + const [count, setCount] = React.useState(0) + return ( + <> + + This button has been clicked {count} times. + + + + ) +} +```