import React from 'react'; import { Redirect, Route, Switch } from 'react-router-dom'; import authenticationRoutes from 'routes/authentication'; export default function({ isAuthenticated =false, ...rest }) { const to = {pathname: '/dashboard/homepage'}; return ( { (isAuthenticated) ? () : (
{ authenticationRoutes.map((route, index) => ( ))}
) }
); }