We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eb8a20 commit f77bbbcCopy full SHA for f77bbbc
1 file changed
src/extension/components/Stats.js
@@ -0,0 +1,11 @@
1
+import React from 'react'
2
+import { Graphics } from './Graphics'
3
+
4
+export function Stats({ showChart, totalTime }) {
5
+ return (
6
+ <div className="container result">
7
+ <h1 className="results">Stats</h1>
8
+ {showChart ? <Graphics totalTime={totalTime} /> : null}
9
+ </div>
10
+ )
11
+}
0 commit comments