Skip to content

Instantly share code, notes, and snippets.

@GeoffMahugu
Last active May 20, 2021 13:23
Show Gist options
  • Save GeoffMahugu/fa4533c6e7e0f53269996c47638c498d to your computer and use it in GitHub Desktop.
Save GeoffMahugu/fa4533c6e7e0f53269996c47638c498d to your computer and use it in GitHub Desktop.
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