import React, { Component, PropTypes} from 'react'; import { Link } from 'react-router-dom'; class OrgTabs extends Component { render() { console.log('this.props = ', this.props); const { match } = this.props; return (

Org tabs - will match for any '/:org' path

Should display the org tabs

Should be a connected component, getting the list of orgs

) } } OrgTabs.propTypes = { match: PropTypes.object } export default OrgTabs;