import React from 'react' export class SearchBar extends React.Component { constructor(props) { super(props) this.state = { searchTerm: '' } } setSearchTerm(searchTerm) { this.setState({ searchTerm }) } componentDidMount() { const { searchTerm } = this.props if (searchTerm !== undefined) { this.setSearchTerm(searchTerm) } } render() { const { networkBranch, onSearch } = this.props return (
) } }