index.js:1 Warning: <feGaussianBlur /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

HTML
// You are trying to use a React component type therefore 
// you cannot use a string, you need to use the class directly:
const GraphWidget = React.createElement(PieChart);
Source

Also in HTML: