how to pass data while routing in react code example
Example 1: passing data in route react
<Route path="/" component={() => <Search name={this.props.name} />} />
Example 2: passing data in route react
render={routeProps => <Search name={this.props.name} {...routeProps} />}