mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 02:10:18 +01:00
14 lines
297 B
JavaScript
14 lines
297 B
JavaScript
"use client"
|
|
import LoginForm from "@/components/team/loginForm";
|
|
|
|
export default function Home() {
|
|
function login(teamId) {
|
|
console.log(teamId);
|
|
}
|
|
return (
|
|
<div>
|
|
<LoginForm title={"Team login"} placeholder={"team ID"} buttonText={"Login"} onSubmit={login}/>
|
|
</div>
|
|
);
|
|
}
|