var React = require("react"); var SectionHeader = React.createClass({ render: function() { return (

{this.props.title}

); }, componentDidMount() { var h = window.location.hash; if (h) { window.location = window.location.hash; } } }); module.exports = SectionHeader;