import React from 'react'; import PropTypes from 'prop-types'; import { Panel, Row, Col, Tabs, Tab, FormControl } from 'react-bootstrap'; import RecentActivity from '../profile/components/RecentActivity'; import Favorites from '../profile/components/Favorites'; import DashboardTable from './DashboardTable'; import { t } from '../locales'; const propTypes = { user: PropTypes.object.isRequired, }; export default class App extends React.PureComponent { constructor(props) { super(props); this.state = { search: '', }; this.onSearchChange = this.onSearchChange.bind(this); } onSearchChange(event) { this.setState({ search: event.target.value }); } render() { return (

{t('Dashboards')}


{t('Recently Viewed')}


{t('Favorites')}


); } } App.propTypes = propTypes;