Getting Started
Welcome to the Help Scout React UI Kit! This UI Kit is a collection of reusable and customizable components that follow a modern design system. Built using React, these components are designed to be simple, flexible, and easy to integrate into your projects.
Installation
To install the React UI Kit, run the following command:
npm install @helpscout/ui-kitpnpm install @helpscout/ui-kityarn add @helpscout/ui-kitcomponents
UI Kit currently includes the following components:
Usage
To use a component from UI Kit, simply import it and use it in your React application.
import { Button } from "@helpscout/ui-kit";
function App() { return <Button variant="primary">Get started!</Button>;}