bidstack-material-uikit
v0.0.1
Published
This is bidstack material ui components repository
Downloads
5
Maintainers
Readme
bidstack-uikit
Bidstack ui components list
How check/view componenets: run react-markup
in project root (https://github.com/ipostol/react-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