import React, { Component } from 'react'; class SearchFullInfoStaff extends Component { render() { console.log(this.props) const {fullInfoSearchData} = this.props return (
{fullInfoSearchData.map((el,key)=>(
{el.title} {el.price} {el.description}
) )}
); } } export default SearchFullInfoStaff;