blob: 7b1953639c7b3c9a10140e7904278a0bc36bc494 (
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
|
import React, { Component } from 'react'
import { Route } from 'react-router-dom'
import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import './align.css'
import './components/annotations/annotation.form.css'
import './components/annotations/annotation.index.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
|