Passando dados na rota react
<Route path="/" component={() => <Search name={this.props.name} />} />
Mystic Dev
<Route path="/" component={() => <Search name={this.props.name} />} />
render={routeProps => <Search name={this.props.name} {...routeProps} />}
//To pass data to the component
<Route exact path = "/" element= {<Page value={4}/>} />
//To get the data from inside the component
const value = this.props.value