Skip to Content
Welcome to Superset Documentation
Getting Started

Getting Started

Get up and running with Superset in minutes.

Installation

Install Superset using your preferred package manager:

# Using bun bun add @superset/ui # Using npm npm install @superset/ui # Using pnpm pnpm add @superset/ui

Basic Usage

Here’s a simple example to get you started:

import { Button } from "@superset/ui/button"; export default function App() { return ( <div> <Button>Click me</Button> </div> ); }

Next Steps

Last updated on