31 lines
855 B
TypeScript
31 lines
855 B
TypeScript
"use server";
|
||
import React from "react";
|
||
import SelectOccupantFrom from "./selectFrom";
|
||
// import LeftSidePanel from "@/components/login/leftsidepanel";
|
||
{
|
||
/* <LeftSidePanel textLabel="Evyos Yönetim Modülüne hoşgeldiniz. Lütfen mail adresinizi ve şifreniz ile giriş yapınız." /> */
|
||
}
|
||
|
||
interface interfaceLoginSelectOccupant {
|
||
availableOccupants: any;
|
||
}
|
||
|
||
const LoginSelectOccupantCard: React.FC<interfaceLoginSelectOccupant> = async ({
|
||
availableOccupants,
|
||
}) => {
|
||
return (
|
||
<>
|
||
<div className="min-h-full min-w-full">
|
||
<h1 className="mt-10 text-center text-2xl/9 font-bold tracking-tight text-gray-900">
|
||
Görev Seçimi Yapınız
|
||
</h1>
|
||
<div>
|
||
<SelectOccupantFrom availableOccupants={availableOccupants} />
|
||
</div>
|
||
</div>
|
||
</>
|
||
);
|
||
};
|
||
|
||
export default LoginSelectOccupantCard;
|