UNPKG

react-bootstrap

Version:

Bootstrap 3 components build with React

15 lines (12 loc) 300 B
import React from 'react'; import classNames from 'classnames'; const Jumbotron = React.createClass({ render() { return ( <div {...this.props} className={classNames(this.props.className, 'jumbotron')}> {this.props.children} </div> ); } }); export default Jumbotron;