diff --git a/lazy-timer-fe/src/components/Charts/SparkLine.jsx b/lazy-timer-fe/src/components/Charts/SparkLine.jsx new file mode 100644 index 0000000..c2109af --- /dev/null +++ b/lazy-timer-fe/src/components/Charts/SparkLine.jsx @@ -0,0 +1,37 @@ +import React from 'react'; +import { SparklineComponent, Inject, SparklineTooltip } from '@syncfusion/ej2-react-charts'; + +class SparkLine extends React.PureComponent { + render() { + const { id, height, width, color, data, type, currentColor } = this.props; + + return ( + + + + ); + } +} + +export default SparkLine;