import React, { Component } from 'react'; import { connect} from 'react-redux'; import * as actions from "../actions/searchStaffAction"; import { bindActionCreators } from "redux"; import SearchStaffsPage from "../components/SearchStaffsPage" import LeftMenu from '../container/LeftMenu' import Header from '../container/Header' class SearchStaff extends Component { componentDidMount(){ const { searchStaff, match } = this.props searchStaff(match.params.title) } render() { console.log(this.props) return (