Смотрю файл, пока не нашёл. Его код: const Chart = ({ isAuthenticated }) => { // redirect to /login if not logged in if (!isAuthenticated) { return <Redirect to='/login' /> } return ( <div>Chart Component<div> ); }; Chart.propTypes = { isAuthenticated: PropTypes.bool.isRequired }; const mapStateToProps = state => ({ isAuthenticated: state.auth.isAuthenticated }); export default connect(mapStateToProps)(Chart);
Обсуждают сегодня