could you please tell me how to send data from one component to another component in react ? I do like this
<Route path="/second/:testvalue" component={Second}/>
on Link function
<Link to="/second/"{this.state.username}><button onClick={this.handleClick}>send data</button></Link>
But it not passing my data
here is my code http://codepen.io/anon/pen/mOYgJV?editors=1011