1.0.0 • Published 2 years ago

@grupor5/pandorabeta v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

Installation

Ensure you have Yarn installed.

To add Pandora to your React application, run:

$ yarn add @grupor5/pandora

if you prefer npm, run this command instead:

$ npm install --save @grupor5/pandora

That's all you nedd to do

   

How to use Pandora

  1. Include any available components:
import { Button } from '@grupor5/pandora'
  1. Use them along your React components:
const Example = () => {
  return (
    <div>
      <Button
        size="large"
        appearance="secondary"
        onClick
      >Touch me!</Button>
    </div>
  )
}