import React from 'react'; import { BrowserRouter, Switch, Route, Redirect, } from 'react-router-dom'; import { isAuthenticated } from '../../client/state/auth'; import Auth from '../templates/auth/Auth'; import Client from '../templates/client/Client'; function App() { return ( { isAuthenticated() ? : } { isAuthenticated() ? : } { isAuthenticated() ? : } ); } export default App;