docs: select/demo/search.md - English translation (#3009)

English translation of labels.
This commit is contained in:
Marius Ileana 2016-09-12 05:09:22 +03:00 committed by Benjy Cui
parent 8e7fc057e6
commit ced5c9a9ed

View File

@ -22,14 +22,14 @@ function handleChange(value) {
ReactDOM.render(
<Select showSearch
style={{ width: 200 }}
placeholder="请选择人员"
placeholder="Select a person"
optionFilterProp="children"
notFoundContent="无法找到"
notFoundContent="Nothing found"
onChange={handleChange}
>
<Option value="jack">杰克</Option>
<Option value="lucy">露西</Option>
<Option value="tom">汤姆</Option>
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="tom">Tom</Option>
</Select>
, mountNode);
````