mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-15 18:58:11 +00:00
745 B
745 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 4 |
|
zh-CN
带有搜索按钮的输入框。
en-US
Example of creating a search box by grouping a standard input with a search button.
import { Input } from 'antd';
const { Search } = Input;
ReactDOM.render(
<div>
<Search
placeholder="input search text"
onSearch={value => console.log(value)}
style={{ width: 200 }}
/>
<br />
<br />
<Search placeholder="input search text" onSearch={value => console.log(value)} enterButton />
<br />
<br />
<Search
placeholder="input search text"
enterButton="Search"
size="large"
onSearch={value => console.log(value)}
/>
</div>,
mountNode,
);