This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Description
I used react-router to do dynamic rendering here. But I found that this component printed wasted time each time when I clicked react-router that triggered @@router/LOCATION_CHANGE. It's perfect for us to know the performance issue of React. But when I triggered @@router/LOCATION_CHANGE twice, it seems that the wasted time increased. I repeat this operation one by one, found that all measurements increased time by time.
Question:
- Is there exist one way to calculate measurements for each when I click @@router/LOCATION_CHANGE, not accumulation measurements ?
- Please help to confirm this situation so that we could know more details about this component ?
Examples:
When I clicked Link many times, the wasted time show more than 30000ms, but my application showed page less than 200ms, that's why I thought this component calculate wasted time in accumulation mode here.