var React = require('react')

var Header = React.createClass({
  render(){
    return <div className="book-header" role="navigation">
      <h1>
        <i className="fa fa-circle-o-notch fa-spin"></i>
        <a href={ this.props.basePath }>{this.props.title}</a>
      </h1>
    </div>
  }
})


module.exports = Header