Chartjs-Uncaught ReferenceError: require is not defined using react-chartjs.min.js

0👍

you have to import Line as mentioned in example of react-chartjs

example code

import {Line} from 'react-chartjs-2'; 

Also you have to use bable for building this.

Leave a comment