import * as React from "react"; import { Link, withRouter } from "react-router-dom"; import * as routes from "../../constants/routes"; import { SignUpForm } from "./SingUpForm"; const SignUpComponent = () => (

SignUp

); export const SignUpLink = () => (

Don't have an account? Sign Up

); export const SignUp = withRouter(SignUpComponent);