Skip to content
Snippets Groups Projects
TotalConnectionsPerMonth.js 254 B
Newer Older
tlansey's avatar
tlansey committed
import React, { Component } from 'react';
import { Line } from 'react-chartjs-2';
import { data, options } from './config';

export default class TotalConnectionsPerMonth extends Component {
tlansey's avatar
tlansey committed
  render() {
    return <Line data={data} height={90} />;
  }
}