We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f77bbbc commit c82d8a6Copy full SHA for c82d8a6
1 file changed
src/extension/components/Graphics.js
@@ -0,0 +1,15 @@
1
+import React from 'react'
2
+
3
+export function Graphics(props) {
4
+ return (
5
+ <React.Fragment>
6
+ <p>Overall time taken</p>
7
+ <canvas id="myChart" width="400" height="300" />
8
+ <p>
9
+ {' '}
10
+ Total time taken combining all the phases -{' '}
11
+ <strong>{props.totalTime} ms</strong>{' '}
12
+ </p>
13
+ </React.Fragment>
14
+ )
15
+}
0 commit comments