Skip to content
Snippets Groups Projects

Private route

Merged Defendi Alberto requested to merge fix-test into master
4 files
+ 56
4
Compare changes
  • Side-by-side
  • Inline
Files
4
import React, { FC } from 'react';
import React, { FC } from 'react';
import Button from '@material-ui/core/Button';
import Button from '@material-ui/core/Button';
import { Link } from 'react-router-dom';
import { Link } from 'react-router-dom';
 
import { NonAuthRoutes } from 'components/api/routes';
export const LandingPage: FC = () => (
export const LandingPage: FC = () => (
<>
<>
<Button variant="contained">
<Button variant="contained">
<Link to="/auth">Login</Link>
<Link to={NonAuthRoutes.login}>Login</Link>
</Button>
</Button>
<section>
<section>
<h2>What is MoveAid?</h2>
<h2>What is MoveAid?</h2>
Loading