In this commit I want to refactor some things. - I don't want to use external connections so I moved all that shit to localhost - I do not need so many spaces as it is bad for formatting
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
import React from "react";
|
|
import "../../App.css";
|
|
import Footer from "../../Footer";
|
|
|
|
export default function SignUp() {
|
|
return (
|
|
<>
|
|
<h1 className="sign-up">SIGN UP</h1>
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|