import React from 'react' import PropTypes from 'prop-types' import { translate } from 'react-i18next' import { Button } from 'reactstrap' class Navigation extends React.Component { static propTypes = { t: PropTypes.func.isRequired, actions: PropTypes.object.isRequired }; backToTables = () => { this.props.actions.switchShareSubScreen('notifications', 'tables') }; render () { return ( ) } } export default translate(['tabsContent'], { wait: true })(Navigation)