import * as React from "react"; import { Link, withRouter } from "react-router-dom"; import * as routes from "../../constants/routes"; import { SignUpForm } from "./SingUpForm"; const SignUpComponent = () => (
Don't have an account? Sign Up
); export const SignUp = withRouter(SignUpComponent);