Skip to content

Instantly share code, notes, and snippets.

View rwbrockhoff's full-sized avatar
🎯
Focusing

Ryan Brockhoff rwbrockhoff

🎯
Focusing
  • HyperCarrot
  • Denver, Colorado
View GitHub Profile
import React, { Component } from 'react'
import Chart from "chart.js";
import classes from "./LineGraph.module.css";
export default class LineGraph extends Component {
chartRef = React.createRef();
componentDidMount() {
const myChartRef = this.chartRef.current.getContext("2d");