admin setting with fake data create update

This commit is contained in:
2024-01-20 13:58:14 +03:30
parent a45fbddc8d
commit 6f906c8a2a
10 changed files with 409 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import {useTranslations} from "next-intl";
import CreateForm from "@/components/dashboard/admin-setting/Form/CreateForm";
function TableToolbar({mutate}) {
const t = useTranslations();
return <CreateForm mutate={mutate}/>
}
export default TableToolbar;