summaryrefslogtreecommitdiff
path: root/animism-align/frontend/views/align/containers/annotations.container.js
diff options
context:
space:
mode:
Diffstat (limited to 'animism-align/frontend/views/align/containers/annotations.container.js')
-rw-r--r--animism-align/frontend/views/align/containers/annotations.container.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/animism-align/frontend/views/align/containers/annotations.container.js b/animism-align/frontend/views/align/containers/annotations.container.js
index e32757b..b6cdace 100644
--- a/animism-align/frontend/views/align/containers/annotations.container.js
+++ b/animism-align/frontend/views/align/containers/annotations.container.js
@@ -11,15 +11,16 @@ import { clamp } from '../../../util'
import { positionToTime } from '../align.util'
import AnnotationForm from '../components/annotations/annotation.form'
+import AnnotationIndex from '../components/annotations/annotation.index'
class Annotations extends Component {
constructor(props){
super(props)
- // this.handleKeydown = this.handleKeydown.bind(this)
}
render() {
return (
<div className='annotations'>
+ <AnnotationIndex />
{this.props.annotation.start_ts &&
<AnnotationForm />
}
@@ -28,11 +29,6 @@ class Annotations extends Component {
}
}
-/*
-- get the first sentence from the text
-- display the form at that point
-*/
-
const mapStateToProps = state => ({
timeline: state.align.timeline,
annotation: state.align.annotation,