mirror of
https://github.com/kevin-DL/commander_league_web.git
synced 2026-01-11 18:14:27 +00:00
15 lines
206 B
JavaScript
15 lines
206 B
JavaScript
import FirebaseAuth from '../components/FirebaseAuth'
|
|
|
|
const Auth = () => {
|
|
return (
|
|
<div>
|
|
<p>Sign in</p>
|
|
<div>
|
|
<FirebaseAuth />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Auth
|