๐Ÿ“ฆ edgarlpassos / tum-nms-client

๐Ÿ“„ UnauthenticatedRoute.jsx ยท 12 lines
1
2
3
4
5
6
7
8
9
10
11
12import React from "react";
import { Route, Redirect } from "react-router-dom";

export default ({ component: C, props: childProps, ...rest }) => (
  <Route
    {...rest}
    render={
      props => !childProps.isAuthenticated ? <C {...props} {...childProps} /> : <Redirect to="/" />
    }
  />
);