summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSunil Shetye2024-08-31 12:09:34 +0530
committerSunil Shetye2024-09-04 11:05:36 +0530
commitd5c55f09fd0247707c694053fe0634bb02d199bf (patch)
treefa32eb2f504162cb56f7c2abc86411df156fab4b
parent38c85b4d12da8c0b2429250e49245626e49a4cfc (diff)
downloadCommon-Interface-Project-d5c55f09fd0247707c694053fe0634bb02d199bf.tar.gz
Common-Interface-Project-d5c55f09fd0247707c694053fe0634bb02d199bf.tar.bz2
Common-Interface-Project-d5c55f09fd0247707c694053fe0634bb02d199bf.zip
fix import
-rw-r--r--blocks/eda-frontend/src/components/Shared/Graph.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/blocks/eda-frontend/src/components/Shared/Graph.js b/blocks/eda-frontend/src/components/Shared/Graph.js
index 27d20d1a..e3f3347e 100644
--- a/blocks/eda-frontend/src/components/Shared/Graph.js
+++ b/blocks/eda-frontend/src/components/Shared/Graph.js
@@ -1,4 +1,4 @@
-import React from 'react'
+import React, { Component } from 'react'
import PropTypes from 'prop-types'
import Highcharts from 'highcharts'
import HighchartsReact from 'highcharts-react-official'
@@ -15,7 +15,7 @@ export function setStatusClosed () {
statusClosed = true
}
-class Graph extends React.Component {
+class Graph extends Component {
pointList = new Queue()
addPointToQueue = (id, point) => {