Semantic-UI Sidebar.Pusher causing react router to rerender its component

99封情书 提交于 2019-12-08 05:34:25

I suspect it's that your <Route>'s component props are functions rather than just a reference to the component classes.

I.e. instead of

component={() => (<Home />)}

I believe it should be

component={Home}

I believe the former way re-renders a completely new component on every render, so there is no way for React to assert that a re-render is unnecessary.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!