import { useState } from "react"; import { Link } from "react-router-dom"; import './shop.css' const list = [ { id: 1, name: "孙悟空", age: 20, describe: "金箍棒", }, { id: 2, name: "猪八戒", age: 22, describe: "九齿钉耙", }, { id: 3, name: "沙和尚", age: 24, describe: "月牙铲", }, ]; function Shop() { let [newList] = useState(list); return (
序号 | 名字 | 年龄 | 武器 | 操作 | 1 | aaa | 23 | 121212 | */} {newList.map((item, index) => (
---|---|---|---|---|
{index + 1} | {item.name} | {item.age} | {item.describe} | 详情 |