I have a routerLink attached to the lead value in a table I have created in the HTML of an angular2 component. Upon clicking that table value, I want the routerLink to not only send to the next component but also bring the chosen value to the next component.
Example of current code
<a [routerLink]="['/Records']" ><td> {{Member.Name}} <td></a>
I have the link so it is sending to the Records page, however how do I send the name to that component so that I can display the specific record that I am trying to display?