$ npm install @upstash/react-cli
// /app/components/cli.tsx
"use client"
import { RedisCli } from "@upstash/react-cli";
import "@upstash/react-cli/dist/index.css";
<div
style={{
width: "100%",
height: "100%",
maxWidth: "48rem",
maxHeight: "32rem",
}}
>
<RedisCli url="UPSTASH_REDIS_REST_URL" token="UPSTASH_REDIS_REST_TOKEN" />;
</div>
If you already have a tailwindcss toolchain, you can omit the css import and add the library to your tailwind config file:
// tailwind.config.js
module.exports = {
content: [
// ...
"./node_modules/@upstash/react-cli/**/*.js", // <-- add this line
],
//...
}