-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
73 lines (61 loc) · 1.99 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import './App.css';
import React, {useState, useEffect, useCallback, useMemo, Component,useRef} from 'react';
import Chart from './Chart';
import Layout from './maplayout';
import './layout.css';
import './chartlayout.css';
import Topbar from './topbar/Topbar';
import Sidebar from './sidebar/Sidebar';
import './featuredInfo.css';
import Bar from './Bar';
import RadarChart from './RadarChart';
const center = [37.549605, 126.988386]
function App() {
return (
<div className="App">
<Topbar/>
<div className="container">
<Sidebar/>
<div className='others'>
<div className="featured">
<div className="featuredItem">
<span className="featuredTitle"><h2>Map</h2></span>
<div className="featuredMapContainer">
<Layout/>
</div>
</div>
</div>
<div><br/><br/></div>
<div className="featured">
<div className="featuredItem">
<span className="featuredTitle"></span>
<div className="featuredMapContainer">
<div style={{ position: "relative", width: "67vw", height: "500px", marginLeft: "5%", alignItems: "center", overflow: "scroll"}}><Chart/></div>
</div>
</div>
</div>
<div><br/><br/></div>
<div className="featured">
<div className="featuredItem">
<span className="featuredTitle"></span>
<div className="featuredMapContainer">
<div style={{ width: "50vw", height: "500px"}}><Bar/></div>
</div>
</div>
</div>
<div><br/><br/></div>
<div className="featured">
<div className="featuredItem">
<span className="featuredTitle"></span>
<div className="featuredMapContainer">
<div><RadarChart/></div>
<div style={{height:"500px"}}></div>
</div>
</div>
</div>
</div>
</div>
</div>
)
}
export default App;