import clsx from "clsx" import { Controller } from "react-hook-form" import { useTranslation } from "react-i18next" import RadioGroup from "../../../../../components/organisms/radio-group" import { AllocationType } from "../../../types" import { useDiscountForm } from "../form/discount-form-context" const DiscountAllocation = () => { const { control } = useDiscountForm() const { t } = useTranslation() return ( { return ( ) }} /> ) } export default DiscountAllocation