061608323f26056d651057d459270ba2d3c88e54
Installation ∙ 
# bun
bun add reacord react discord.js
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%
