Skip to content

Commit f77bbbc

Browse files
committed
renamed from Results
1 parent 2eb8a20 commit f77bbbc

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/extension/components/Stats.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)