import { Navigate } from 'react-router-dom'; import { history } from '../helpers'; function PrivateRoute({ children }) { if (!localStorage.getItem('user')) { return ; } return children; } export { PrivateRoute };