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/uiBasic 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
- Learn about Components
- Explore Examples
- Read the API Reference
Last updated on