Add a feature to handle invitations #261
@ -25,9 +25,9 @@ export default function InvitationsBoard({ guests, invitations }: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex h-full">
|
<div className="flex h-screen">
|
||||||
{/* Left Column: Guests */}
|
{/* Left Column: Guests */}
|
||||||
<div className="w-1/4 h-full overflow-y-auto border-r border-gray-300 p-4">
|
<div className="w-1/4 h-full overflow-auto border-r border-gray-300 p-4">
|
||||||
<h2 className="text-lg font-semibold mb-4">Guests</h2>
|
<h2 className="text-lg font-semibold mb-4">Guests</h2>
|
||||||
<ul>
|
<ul>
|
||||||
{availableGuests.map((guest, index) => (
|
{availableGuests.map((guest, index) => (
|
||||||
@ -43,7 +43,7 @@ export default function InvitationsBoard({ guests, invitations }: {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Right Column: Invitations */}
|
{/* Right Column: Invitations */}
|
||||||
<div className="w-3/4 h-full overflow-y-auto p-4">
|
<div className="w-3/4 h-full overflow-auto p-4">
|
||||||
<h2 className="text-lg font-semibold mb-4">Invitations</h2>
|
<h2 className="text-lg font-semibold mb-4">Invitations</h2>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
|
Loading…
x
Reference in New Issue
Block a user