work on blade to react

This commit is contained in:
Olivier Gagnon
2021-08-15 21:49:08 -04:00
parent 33f0efd49c
commit 99d4f17cdb
17 changed files with 247 additions and 301 deletions
+1 -1
View File
@@ -42,6 +42,6 @@ export function TaskSelector(props: IProps): React.ReactElement {
<option key={0} value={"---"}>---</option>
{tasks.map((task: string, i: number) => <option key={i+1} value={task}>{task}</option>)}
</select>
<div>{StatsTable(data, null)}</div>
<div>{StatsTable(data)}</div>
</>);
}