SearchFullInfoStaff.js 454 B

1234567891011121314151617
  1. import React, { Component } from 'react';
  2. class SearchFullInfoStaff extends Component {
  3. render() {
  4. console.log(this.props)
  5. const {fullInfoSearchData} = this.props
  6. return (
  7. <div>
  8. {fullInfoSearchData.map((el,key)=>(<div key={key}> {el.title} {el.price} {el.description} </div>)
  9. )}
  10. </div>
  11. );
  12. }
  13. }
  14. export default SearchFullInfoStaff;