0.20.2 • Published 9 years ago

react-bootstrap-factories v0.20.2

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

For non-JSX users, wrapper for react-bootstrap that provides classes pre-wrapped in helpers to create the corresponding elements so you can write:

var Alert = require('react-bootstrap').Alert

instead of:

var Alert = React.createFactory(require('react-bootstrap').Alert)

Why?

The components provided in many libraries, such as react-bootstrap, are not wrapped in factories. This isn't a problem if you use JSX. The compiler handles it for you automatically. However if you do not use JSX, you're stuck doing it manually for each element you want to import and use. It's no big deal but it can add up if you do this often.

This library simply provides a convenience wrapper for one of my most frequently used libraries: react-bootstrap.

More Information