@react-leaf/core
Version:
React Leaf Core components
37 lines (24 loc) • 664 B
Markdown
## Description
`@react-leaf/core` is a library of lightweight and easy-to-use React components written in TypeScript.\
It is designed to help developers quickly build UIs without having to worry about the underlying implementation details.
[View Documentation](/#)
## Installation
```bash
# with npm
npm install @react-leaf/core
# with yarn
yarn add @react-leaf/core
```
## Usage
In your `main.js` or `app.js` import the styles:
```js
import '@react-leaf/core/styles.css'
```
And import any composant to use it:
```jsx
import { Button } from '@react-leaf/core'
function Demo() {
return <Button>This is a button !</Button>
}
```
And your good to go !