import { createContext, useEffect, useState } from 'react' import { useOrderStore } from '@/stores/OrderStore' import { Tooltip, Button } from 'antd' import GeneratePaymentDrawer from '../Components/GeneratePaymentDrawer' const PaymentlinkBtn = ({ type, ...props }) => { const [openPaymentDrawer] = useOrderStore((state) => [state.openDrawer]) return ( <> {/* */} {/* ) : ( )} ) } export default PaymentlinkBtn