Last active
May 20, 2021 13:23
-
-
Save GeoffMahugu/fa4533c6e7e0f53269996c47638c498d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { Link } from 'react-router-dom'; | |
import IPageProps from '../interfaces/page.interface'; | |
const SignUpPage: React.FunctionComponent<IPageProps> = props => { | |
return ( | |
<div> | |
<h1> SignUp Page - Unprotected</h1> | |
<Link to={`/`}> | |
<button>Back Home</button> | |
</Link> | |
</div> | |
); | |
} | |
export default SignUpPage; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment