UNPKG

react-bootstrap

Version:

Bootstrap 3 components build with React

15 lines (12 loc) 275 B
import React from 'react'; import PanelGroup from './PanelGroup'; const Accordion = React.createClass({ render() { return ( <PanelGroup {...this.props} accordion={true}> {this.props.children} </PanelGroup> ); } }); export default Accordion;