blob: c422c3f512fe5b17866bce3dd0160e3cfb7f42d8 (
plain)
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
|
import React, { Component } from 'react'
import { Route } from 'react-router-dom'
import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import './align.css'
import Timeline from './components/timeline.component.js'
import actions from '../../actions'
import { Header } from '../../common'
// import * as uploadActions from './upload.actions'
// import GraphIndex from './containers/graph.index'
// import GraphNew from './containers/graph.new'
// import GraphEdit from './containers/graph.edit'
class Container extends Component {
componentDidMount() {
}
render() {
return (
<div>
<Header />
<div className='body'>
<Timeline />
</div>
</div>
)
}
}
export default Container
|