import React from 'react'; import { Panel, Row, Col, FormControl } from 'react-bootstrap'; import DashboardTable from './DashboardTable'; 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 (

Dashboards


); } }