joshsoftware/code-curiosity

View on GitHub
app/assets/javascripts/components/user_points_chart.es6.jsx

Summary

Maintainability
A
0 mins
Test Coverage
class UserPointsChart extends React.Component {
  constructor(props) {
    super(props);
  }

  componentDidMount() {
    userTrendChart(this.props.xAxis, this.props.commits, this.props.points, this.props.username);
  }

  render () {
    return (
      <div className='box-body'>
        <div id='users-chart-container'>
        </div>
      </div>
    );
  }
}