import { Avatar } from "@arco-design/web-react"; import { useSelector } from "react-redux"; import "./index.css"; const ProfileCard = () => { const studentInfo = useSelector((state) => state.student.studentInfo); return (
avatar
{studentInfo?.realName || "-"}

学号: {studentInfo?.studentNo || "-"}

); }; export default ProfileCard;