import { useEffect, useState } from "react";
import { Card, Spin } from "antd";
import { getLinkListAPI } from '@/api/Web';
import { getCommentListAPI } from "@/api/Comment";
import { getWallListAPI } from "@/api/Wall";
import Title from "@/components/Title";
import comment from './image/comment.svg';
import info from './image/message.svg';
import link from './image/link.svg';
import Empty from "@/components/Empty";
import List from "./components/List";
type Menu = "comment" | "link" | "wall";
export default () => {
const [loading, setLoading] = useState(false)
const activeSty = "bg-[#f9f9ff] dark:bg-[#3c5370] text-primary";
const [active, setActive] = useState