@grupor5/pandorabeta
v1.0.0
Published
Ensure you have [Yarn](https://yarnpkg.com/lang/en/) installed.
Downloads
1
Keywords
Readme
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
- Include any available components:
import { Button } from '@grupor5/pandora'
- Use them along your React components:
const Example = () => {
return (
<div>
<Button
size="large"
appearance="secondary"
onClick
>Touch me!</Button>
</div>
)
}