React router private routes / redirect not working

后端 未结 9 1240
轮回少年
轮回少年 2020-12-07 16:57

I have slightly adjusted the React Router example for the private routes to play nice with Redux, but no components are rendered when Linking or Redirecting to other \'pages

9条回答
  •  太阳男子
    2020-12-07 17:19

    You need to wrap your Route with tag

    ReactDOM.render(
    
        
            
                
    // ... other private routes
    , document.getElementById('root'));

提交回复
热议问题