Handling CRUD for members in frontend

This commit is contained in:
cdricms
2025-01-28 13:29:33 +01:00
parent ac7e97527f
commit b723479ec8
5 changed files with 280 additions and 170 deletions

View File

@@ -0,0 +1,10 @@
"use server";
import MembersTable from "@/components/members-table";
export default async function Page({}) {
return (
<div className="container mx-auto px-4 py-10">
<MembersTable />
</div>
);
}