vx-components-react component library
npm install vx-components-react







``
// npm
npm install vx-components-react
// yarn
yarn add vx-components-react
`
javascript
import React from 'react';
import ReactDOM from 'react-dom';
import { Button } from 'vx-components-react';const App = () => (
);
ReactDOM.render(App, document.getElementById('root'));
`Development
To run the demo locally, run:
`
// npm
npm install & npm run docs// yarn
yarn install && yarn docs
`
This will run the styleguide used in the demo locally. It will automatically update whenever you change a component.The demo uses
react-styleguidist`, read more about it here.