[solved] {{> Template.dynamic template=breadcrumb}} reproducing in React

Hi all!
With FlowRouter and Blaze i get nice smooth rendering transition between pages, in this example
try click to pagination buttons or breadcrumb, transition without reload page! smooth! all elements remains in place!
but in react with

render() {
if (ready) 
 return <Content/>
else 
return <Loading/>
}

occurs full reload page,
how to implement smooth rendering in react?
Perhaps this question applies to the react router? i try V4
thank in advance

got it!
need use <Link/> or <a click> instead <a href> !!
Thanks for help!