Skip to content

Commit

Permalink
[core] Add Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rtivital committed Mar 10, 2021
1 parent c2d55f8 commit 631efdc
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 2 deletions.
45 changes: 43 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,43 @@
# mantine
Mantine Components Monorepo
# Mantine

![Github banner](./github-banner.svg)

Build better React applications. Mantine is a customizable component library with focus on accessibility and developer experience.

## Links

- [Documentation](https://mantine.dev/)
- [Getting Started](https://mantine.dev/getting-started/)
- [Examples](https://mantine.dev/examples/)
- [Contributing](https://mantine.dev/source/)

## Installation

To start using Mantine you need to install [`@mantine/core`](https://www.npmjs.com/package/@mantine/core) and its peer dependencies:

```sh
# With yarn
yarn add @mantine/core @mantine/hooks react-jss @modulz/radix-icons

# With npm
yarn add @mantine/core @mantine/hooks react-jss @modulz/radix-icons

# With install-peerdeps
npx install-peerdeps @mantine/core
```

## Usage

Now you can import and use any component from @mantine/core:

```tsx
import { Button } from '@mantine/core';

function App() {
return <Button>Mantine button</Button>;
}
```

## Licence

All @mantine/ scoped packages, dependencies and peer dependencies have MIT licence.
1 change: 1 addition & 0 deletions github-banner.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 631efdc

Please sign in to comment.