import React from "react"; import { Link, withRouter } from "react-router-dom"; import { connect } from "react-redux"; const liArr = [ { path: "/", id: 1, text: "Main", hideWhenAuth: false }, { path: "/count", id: 2, text: "Counter from redux", hideWhenAuth: false }, { path: "/redux-todo", id: 3, text: "Todo redux", hideWhenAuth: false }, { path: "/form", id: 4, text: "TODO REDUX_FORM", hideWhenAuth: false }, { path: "/auth", id: 5, text: "Auth", hideWhenAuth: true } ]; const header = props => { const event = () => new Promise((resolve, reject) => { setTimeout(() => { props.history.push("/test"); }, 5000); }); return ( ); }; const mapStateToProps = state => ({ user: state.auth.user }); export default connect(mapStateToProps)(withRouter(header));