"use client";
import React, { useState } from "react";
import Image from "next/image";
export default function ShopProfile() {
const [showLicenseImage, setShowLicenseImage] = useState(false);
return (
{/* 店铺头像和名称 */}
{/* 店铺评分 */}
店铺评分
{[...Array(5)].map((_, index) => (
))}
宝贝质量
4.9
物流速度
5.0
服务保障
4.8
{/* 保证金金额 */}
{/* 店铺资质 */}
店铺资质
- setShowLicenseImage(!showLicenseImage)}
className="cursor-pointer text-blue-500"
>
营业执照
{showLicenseImage && (
)}
);
}