index.jsx 404 B

1234567891011121314151617
  1. import React from "react";
  2. import style from "../index.less";
  3. import Item from "../Item";
  4. class WrapModalTitle extends React.Component {
  5. constructor(props) {
  6. super(props)
  7. }
  8. render() {
  9. const { handleSearch,message } = this.props
  10. return <div className={style['modalTop']}>
  11. <Item handleSearch={handleSearch} message={message}></Item>
  12. </div>
  13. }
  14. }
  15. export default WrapModalTitle;