import {
IconColumns,
IconBox,
} from "@tabler/icons-react";
import {
CommonServicesTab,
ProductsTab,
FulfillmentBaseTab,
} from "./dealModularEditorTabs";
import ModulesType from "./types";
export enum ModuleNames {
FULFILLMENT_BASE = "fulfillment_base",
}
const MODULES: ModulesType = {
[ModuleNames.FULFILLMENT_BASE]: {
info: {
key: "fulfillment_base",
label: "Фулфиллмент",
},
tabs: [
{
label: "Услуги",
key: "common_services",
icon: ,
device: "mobile",
tab: (props: any) => ,
},
{
label: "Товары",
key: "products",
icon: ,
device: "mobile",
tab: (props: any) => ,
},
{
label: "Фулфиллмент",
key: "fulfillment_base",
icon: ,
device: "desktop",
tab: (props: any) => ,
},
]
},
};
export default MODULES;