Manuel Bustillo e83e2dc37a
Some checks failed
Check usage of free licenses / build-static-assets (pull_request) Successful in 53s
Playwright Tests / test (pull_request) Failing after 1m19s
Add copyright notice / copyright_notice (pull_request) Successful in 1m34s
Build Nginx-based docker image / build-static-assets (pull_request) Failing after 8m48s
Basic table component
2024-11-01 18:22:32 +01:00

31 lines
947 B
TypeScript

import { Guest } from "@/app/lib/definitions";
function GuestRow({ guests }: { guests: Guest[] }) {
return (<div className="justify-around flex flex-row">
{
guests.map((guest) => {
return (
<div className="m-3 w-24 h-24 rounded-full bg-neutral-400 hover:bg-neutral-500 content-center text-center">
{guest.name}
</div>
)
})
}
</div>)
}
export function Table({ guests }: { guests: Guest[] }) {
const halfwayThrough = Math.floor(guests.length / 2)
const arrayFirstHalf = guests.slice(0, halfwayThrough);
const arraySecondHalf = guests.slice(halfwayThrough, guests.length);
return (
<div className="m-12 h-64 bg-neutral-300 flex flex-col justify-between">
<GuestRow guests={arrayFirstHalf} />
<GuestRow guests={arraySecondHalf} />
</div>
)
}