forgeplus-react/src/forge/Component/Search.jsx

16 lines
303 B
JavaScript

import React from "react";
import { Input } from "antd";
const { Search } = Input;
export default ({ placeholder , onSearch }) => {
return (
<Search
allowClear
placeholder={placeholder}
enterButton={'搜索'}
onSearch={onSearch}
width="300px"
></Search>
)
};