import React from 'react' import style from '../styles/category-tab.module.css' import { useModalStore } from '../stores/useModalStore' import clsxm from '~/libs/clsxm' import { ICategoryPromo } from '~/types/promotion' const TABS: ICategoryPromo[] = [ { value: 'bundling', label: 'Bundling' }, { value: 'discount_loading', label: 'Discount Loading' }, { value: 'merchandise', label: 'Free Merchant' }, ] const ProductPromoCategoryTab = () => { const { activeTab, changeTab } = useModalStore() return (
{TABS.map((tab) => ( ))}
) } export default ProductPromoCategoryTab