# react-router-bootstrap [![Build Status](https://travis-ci.org/mtscout6/react-router-bootstrap.svg?branch=master)](https://travis-ci.org/mtscout6/react-router-bootstrap) Intregation between [react-router](https://github.com/rackt/react-router) and [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) This package gives you react-router compatible substitutes for: - `NavItem` -> `NavItemLink` - `Button` -> `ButtonLink` - `MenuItem` -> `MenuItemLink` - `ListGroupItem` -> `ListGroupItemLink` Turning this: ```jsx React.createClass({ mixins: [State, Navigation], render: function() { var href = this.makeHref('destination', {some: 'params'}, {some: 'query param'}); var isActive = this.isActive('destination', {some: 'params'}, {some: 'query param'}); return