2024-08-11 12:34:16 +02:00
|
|
|
import { lusitana } from '@/app/ui/fonts';
|
2024-08-11 16:14:12 +02:00
|
|
|
import AffinityGroupsTree from '@/app/ui/guests/affinity-groups-tree';
|
2024-08-11 13:12:03 +02:00
|
|
|
import GuestsTable from '@/app/ui/guests/table';
|
2024-08-11 16:14:12 +02:00
|
|
|
import { Tree } from 'primereact/tree';
|
|
|
|
import React, { useState, useEffect } from 'react';
|
|
|
|
|
|
|
|
|
2024-08-11 13:12:03 +02:00
|
|
|
|
|
|
|
export default function Page() {
|
2024-08-11 12:34:16 +02:00
|
|
|
return (
|
|
|
|
<div className="w-full">
|
2024-08-11 16:14:12 +02:00
|
|
|
<AffinityGroupsTree />
|
|
|
|
|
2024-08-11 13:12:03 +02:00
|
|
|
<h1 className={`${lusitana.className} text-2xl py-4`}>Guests</h1>
|
2024-08-11 12:34:16 +02:00
|
|
|
<div className="flex w-full items-center justify-between">
|
2024-08-11 13:12:03 +02:00
|
|
|
<GuestsTable />
|
2024-08-11 12:34:16 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|