Further redesign and refactoring

This commit is contained in:
cami 2021-06-07 05:03:18 +02:00
parent 49106ea1b6
commit 67575be960
7 changed files with 43 additions and 21 deletions

View file

@ -0,0 +1,12 @@
import React from "react";
import "../../App.css";
import Footer from "../../Footer";
export default function SignUp() {
return (
<>
<h1 className="sign-up">SIGN UP</h1>
<Footer />
</>
);
}