React component wrapper for PaperCSS.
The purpose of this project is to learn about building an npm package, monorepo, and npm workspace.
Currently, the packages is not intented to be using on production.
To use Paper Component, you just need to install @paper-component/react
package
npm install @paper-component/react
#or
yarn add @paper-component/react
To start using the components, please follow these steps:
- Import
papercss
on your application root:
import 'papercss';
function App() {
...
}
- Then, you can start using components:
import { Button } from "@paper-component/react"
function Example() {
return <Button>Click Me!</Button>
}
There is no plan to publish the packages publicly. You can try to publish the packages to your private registry such as Verdaccio.
MIT
Thanks to PaperCSS team!!