const React = require('react'); const CurrentLocation = React.createClass({ toggleFavorite() { this.props.onFavoriteToggle(this.props.address); }, render() { let starClassName = 'glyphicon glyphicon-star-empty'; if (this.props.favorite) { starClassName = 'glyphicon glyphicon-star'; } return (