Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,24 @@ React Gauge Chart Component for data visualization.

A gallery of preset gauges and a sandbox editor is provided so you can create and edit your gauges in the [DEMO](https://antoniolago.github.io/react-gauge-component) page

# Usage
Install it by running `npm install react-gauge-component --save` or `yarn add react-gauge-component`. Then to use it:
## Quick Start

Install with your package manager

```js
npm install react-gauge-component --save
```
```js
pnpm add react-gauge-component --save
```
```
yarn add react-gauge-component.
```
```
bun add react-gauge-component.
```

Then import it:

```jsx
import GaugeComponent from 'react-gauge-component';
Expand Down