woocommerce/plugins/woocommerce-admin/client/components/search/example.md

261 B

import { Search } from '@woocommerce/components';

class MySearch extends Component {
	updateLocalValue( results ) {
		// Do something with results.
	}
	render() {
		return (
			<Search type="products" onChange={ this.updateLocalValue } />
		);
	}
}