"use client";

import { createMasterHeaderActions } from "@/app/dashboard/_lib/create-master-header-actions";

import type { MasterCategoryRow } from "./schema";
import { exportMasterCategoryCsv } from "./export-csv";

export const MasterCategoryHeaderActions = createMasterHeaderActions<MasterCategoryRow>({
  createHref: "/dashboard/master/master-category/create",
  onExport: exportMasterCategoryCsv,
});
