-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
54 lines (45 loc) · 1.11 KB
/
index.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
import React from 'react'
import ReactDOM from 'react-dom'
import NormalHistogram from './Histogram/Normal'
import TileHistogram from './Histogram/Tile'
const data = [
{
title: 'Histogram',
subtitle: 'Normal',
Comp: NormalHistogram
},
{
title: 'Histogram',
subtitle: 'Tile',
Comp: TileHistogram
}
]
class ExampleApp extends React.Component {
renderSection(title, subtitle, Comp) {
const style = {
border: '1px solid #ddd',
marginTop: 10,
marginBottom: 10
}
return (
<div style={style}>
<h3>{title} <small>{subtitle}</small></h3>
<Comp/>
</div>
)
}
render() {
return (
<div>
{
data.map(({title, subtitle, Comp}, idx) =>
<div key={idx}>
{this.renderSection(title, subtitle, Comp)}
</div>
)
}
</div>
)
}
}
ReactDOM.render(<ExampleApp/>, document.getElementById('root'))