function ProductItem({ link }) { ....
<Link to={ `/products/${ link }` }
<ProductItem
link="1" // static
link={ json.id } // dynamic
/>
static void Main(string[] args) {
Thread primaryThread = Thread.CurrentThread;
primaryThread.Name = "Thread #1";
primaryThread.Priority = ThreadPriority.Lowest;
Thread secondaryThread = new Thread(RunSecondThread);
secondaryThread.Priority = ThreadPriority.Highest;
secondaryThread.Start();
secondaryThread.Join();
for (int counter = 0; counter < 5; counter++) {
Console.WriteLine("{0} -> {1}", primaryThread.Name, counter);
Thread.Sleep(200);
}
}