0.0.1 • Published 6 years ago

bidstack-material-uikit v0.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

bidstack-uikit

Bidstack ui components list

How check/view componenets: run react-markup in project root (https://github.com/ipostol/react-markup)

markup

How use:

import Buttom from 'bidstack-uikit/lib/components/buttons/Button';

...
render() {

  return (
    <Button onClick={somefunc}>Click me</Button>
  );

}

How add component:

You must add component to /src/components/section/ComponentName/ComponentName.js file

Then:

git add .
git commit -m '#add new [ComponentName] components'
npm run build;
git add .
git commit -m '#compile'
git push ...

How run tests (linter + jest): npm test

How run only linter: npm run lint How run only jest tests: npm run jest