import React, { Component } from 'react' // import { Link } from 'react-router-dom' import { connect } from 'react-redux' import actions from 'app/actions' import { Arrow } from './viewer.icons' class ViewerSectionsNav extends Component { componentDidMount() { } render() { const { } = this.props return (
{'Share'}
{'Checklist'}
actions.viewer.showSection('transcript')}> {'Transcript'}
) } } const mapStateToProps = state => ({ }) export default connect(mapStateToProps)(ViewerSectionsNav)