File tree Expand file tree Collapse file tree 1 file changed +19
-21
lines changed Expand file tree Collapse file tree 1 file changed +19
-21
lines changed Original file line number Diff line number Diff line change @@ -9,28 +9,24 @@ function ResultsTable() {
9
9
} ) ;
10
10
11
11
return (
12
- < >
13
- < h1 > sqlite</ h1 >
14
-
15
- < table >
16
- < thead >
17
- < tr >
18
- < th > benchmark</ th >
19
- < th > name</ th >
20
- < th > ops</ th >
12
+ < table >
13
+ < thead >
14
+ < tr >
15
+ < th > benchmark</ th >
16
+ < th > name</ th >
17
+ < th > ops</ th >
18
+ </ tr >
19
+ </ thead >
20
+ < tbody >
21
+ { results ?. map ( ( r , i ) => (
22
+ < tr key = { i } >
23
+ < td > { r . benchmark } </ td >
24
+ < td > { r . name } </ td >
25
+ < td > { r . ops } </ td >
21
26
</ tr >
22
- </ thead >
23
- < tbody >
24
- { results ?. map ( ( r , i ) => (
25
- < tr key = { i } >
26
- < td > { r . benchmark } </ td >
27
- < td > { r . name } </ td >
28
- < td > { r . ops } </ td >
29
- </ tr >
30
- ) ) }
31
- </ tbody >
32
- </ table >
33
- </ >
27
+ ) ) }
28
+ </ tbody >
29
+ </ table >
34
30
) ;
35
31
}
36
32
@@ -47,6 +43,8 @@ function App() {
47
43
48
44
< AppShell . Main pt = { `calc(${ rem ( 60 ) } + var(--mantine-spacing-md))` } >
49
45
< Graph />
46
+ < h1 > Results</ h1 >
47
+ < ResultsTable />
50
48
</ AppShell . Main >
51
49
</ AppShell >
52
50
</ MantineProvider >
You can’t perform that action at this time.
0 commit comments