import * as React from "react"; import { Route, Redirect } from "react-router-dom"; interface IAuthRouteProps { path: string; component: any; isAuth: () => boolean; } export default class AuthRoute extends React.Component { render() { const auth = this.props.isAuth(); return auth ? : } />; } };