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