Initial commit from Create Next App

This commit is contained in:
2020-10-25 16:16:56 +00:00
commit c0202bdaf8
15 changed files with 8452 additions and 0 deletions

14
pages/auth.js Normal file
View File

@@ -0,0 +1,14 @@
import FirebaseAuth from '../components/FirebaseAuth'
const Auth = () => {
return (
<div>
<p>Sign in</p>
<div>
<FirebaseAuth />
</div>
</div>
)
}
export default Auth