import React, { Component } from "react"; class SearchBar extends Component { constructor(props) { super(props); this.state = { term: "" }; } render() { return (
this.setState({ term: event.target.value })} />
); } } export default SearchBar;