Skip to content
Snippets Groups Projects
TotalConnectionsPerMonth.js 249 B
Newer Older
  • Learn to ignore specific revisions
  • tlansey's avatar
    tlansey committed
    import React, { Component } from 'react';
    import { Line } from 'react-chartjs-2';
    import { data, options } from './config';
    
    export default class TotalSongsByDayLine extends Component {
      render() {
        return <Line data={data} height={90} />;
      }
    }