12 lines
297 B
JavaScript
12 lines
297 B
JavaScript
import {useTranslations} from "next-intl";
|
|
import CreateForm from "@/components/dashboard/user-management/Form/CreateForm";
|
|
|
|
function TableToolbar({mutate, fetchUrl}) {
|
|
const t = useTranslations();
|
|
|
|
return <CreateForm mutate={mutate} fetchUrl={fetchUrl}/>
|
|
|
|
}
|
|
|
|
export default TableToolbar;
|