`@upstash/react-redis-cli` is a React component that provides a CLI interface to interact with Upstash Redis.
@upstash/react-redis-cli is a React component that provides a CLI interface to interact with Upstash Redis.

Install the component via npm:
``bash`
$ npm install @upstash/react-redis-cli
Here's a basic example of how to use the component:
`tsx
import { RedisCli } from "@upstash/react-redis-cli"
import "@upstash/react-redis-cli/dist/index.css"
export default function Page() {
return (
)
}
const mainStyle = {
width: "100vw",
maxWidth: "900px",
height: "500px",
margin: "0 auto",
}
``