bs-react-components
v1.0.0
Published
bs react components
Downloads
3
Maintainers
Readme
bs react components
Get the AMD module located at bs-react-components.js
and include it in your project.
Here is a sample integration:
require.config({
paths: {
'react': 'vendor/bower_components/react/react',
'BsReactComponents': 'bs-react-components'
}
});
require(['react', 'BsReactComponents'], function(React, BsReactComponents) {
React.render(React.createElement(BsReactComponents), document.getElementById('widget-container'));
});
Development
- Development server
npm start
. - Continuously run tests on file changes
npm run watch-test
; - Run tests:
npm test
; - Build
npm run build
;