Getting Started
Core Concepts
Quick Start
Quick Start Guide
Get up and running with Starter in under 5 minutes.
Step 1: Import Components
Import the components you need from starter-ui:
import { Button, Card, Input } from 'starter-ui';
Step 2: Use in Your App
Start building your UI:
function App() {
return (
<Card>
<h1>Welcome</h1>
<Button>Get Started</Button>
</Card>
);
}
Step 3: Customize
Customize components using props and theming.