blob: a659fdd362d8ce65ce4d9dd67d67612491b3032f (
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
|
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 'app/views/align/containers/timeline.container.js'
import Script from 'app/views/align/containers/script.container.js'
import actions from 'app/actions'
class Container extends Component {
componentDidMount() {
document.body.scrollTo(0, 0)
document.body.parentNode.scrollTo(0, 0)
}
render() {
return (
<div className='body'>
<div className='row'>
<Timeline />
</div>
<Script />
</div>
)
}
}
export default Container
|