import React, {FC, ReactNode} from "react"; import {__} from "../../globals"; import {Button} from "../cards/Button"; export type NonImplementedMessageProps = { note?: ReactNode } export const proUpgradeUrl = 'https://couponspluspro.com' export const getProUpgradeLabel = () => __('Get *').replace('*', 'Coupons+ Pro') + ' (coming soon)' export const openProUpgradePage = () => { //window.open(proUpgradeUrl, '_blank'); } export const NonImplementedMessage: FC = ({note}) => { return

{__('Get this, plus the ability to filter by product attributes, create offers for new customers, create bulk and tiered discounts, create bundle discounts, add more than one offer per coupon and much more with Pro.')}

{note &&

{note}

}
}