Added routing and structure to the login and register

This commit is contained in:
2021-09-24 23:54:40 -03:00
parent 6fea8d9175
commit 1f5222c069
10 changed files with 98 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react'
const LoginForm = () => {
return (
<form>
<input type="email" placeholder="email"></input>
<input type="password" placeholder="password"></input>
<input type="submit"></input>
</form>
)
}
export default LoginForm