File tree 1 file changed +17
-3
lines changed
1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
- import GlobalMap from '../../components/GlobalMap' ;
3
2
3
+ import MainBanner from '../../components/MainBanner' ;
4
+ import TitleSection from '../../components/TitleSection' ;
5
+ import ProgressChart from '../../components/ProgressChart' ;
6
+ import GlobalMap from '../../components/GlobalMap' ;
7
+ import DonutChart from '../../components/DonutChart' ;
4
8
const Global = ( params ) => {
5
9
return (
6
10
< >
7
- < h1 > Global</ h1 >
8
- < GlobalMap />
11
+ < section className = 'overview' >
12
+ < TitleSection title = 'Overview' />
13
+ < ProgressChart />
14
+ </ section >
15
+ < section className = 'rates' >
16
+ < DonutChart type = 'isRecovery' />
17
+ < DonutChart type = 'isFatality' />
18
+ </ section >
19
+ < section className = 'progressChart' >
20
+ < TitleSection title = 'New Cases' infoButton />
21
+ < GlobalMap />
22
+ </ section >
9
23
</ >
10
24
) ;
11
25
} ;
You can’t perform that action at this time.
0 commit comments