file: create login component along with its own style

This commit is contained in:
Leon Xu
2022-05-07 12:16:15 -07:00
parent 0253490cd3
commit a8fc9bdfad
2 changed files with 8 additions and 0 deletions
View File
+8
View File
@@ -0,0 +1,8 @@
import React from "react";
import "./Login.css";
function Login() {
return <section className="login">Login</section>;
}
export default Login;