import { useState } from 'react' import './HeadCouponModal.css' import { Button } from 'antd' // import nouseImg from '../../static/coupon/nouse.png' export default function HeadCouponModal() { const [title, setTitle] = useState('未使用') return (
{ setTitle('未使用') }} >未使用
{ setTitle('已使用') }} >已使用
{ setTitle('已过期') }} >已过期
{/* */}
100
{/*
满100可用
*/}
可购买平台内任意软著时使用
2024.08.09 12:15:04
已使用
已过期
) }