4e3f1cc7cb6d3eada0b48196e28726d507967c70
node classes are great as generic containers, and extended classes are great for node identity with instanceof also realized that the NodeFactory is a detail of ReacordElement, so I moved it and renamed it to ReacordElementConfig
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 * 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>
</>
)
}
Description
Languages
TypeScript
99.9%
