import React,{ Component } from 'react';' class SearchBar extends Component { constructor(props){ super(props); this.state = {term : ''}; } render() { return <input onChange={event => this.setState( { term:event.target.value } )} />; } } export default SearchBar;
这里的props指的是什么?怎么理解?
慕慕森
慕村225694
智慧大石
相关分类