b641885112cb8d14c014c7b6d3cd1688f1e56fe5
Installation ∙ 
# npm
npm install reacord react discord.js
# yarn
yarn add reacord react discord.js
# pnpm
pnpm add reacord react discord.js
Get Started
Visit the docs to get started.
Example
import { useState } from "react"
import { Embed, Button } from "reacord"
function Counter() {
const [count, setCount] = useState(0)
return (
<>
<Embed title="Counter">
This button has been clicked {count} times.
</Embed>
<Button
label="+1"
onClick={() => setCount(count + 1)}
/>
</>
)
}
Description
Languages
TypeScript
99.9%
