使用 React 创建交互式 Discord 消息。 ⚛
# npm
npm install reacord react discord.js
# yarn
yarn add reacord react discord.js
# pnpm
pnpm add reacord react discord.js
Visit the docs to get started.
import { useState } from "react"
import { Embed, Button } from "reacord"
function Counter() {
const [count, setCount] = useState(0)
return (
<>
This button has been clicked {count} times.
setCount(count + 1)}
/>
)
}
暂无开放 Issues,或尚未同步最近议题。