Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add Meter component #14

Merged
merged 2 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ It contains components that are either specific to, or only used in MAAS. Genera

Read more in [Project philosophy and guidelines](GUIDELINES.md).

## Getting started

### Installation

```bash
npm install @canonical/maas-react-components
```

or using yarn:

```bash
yarn add @canonical/maas-react-components
```

Add styles import to your app:

```css
@import "@canonical/maas-react-components/dist/style.css";
```

## Development with `maas-react-components`

To see the changes you make to `maas-react-components` reflected in a consuming app immediately, follow these steps:
Expand Down