diff --git a/src/pages/latest-learn/index.tsx b/src/pages/latest-learn/index.tsx index 5926434..719d339 100644 --- a/src/pages/latest-learn/index.tsx +++ b/src/pages/latest-learn/index.tsx @@ -5,9 +5,11 @@ import { Row, Col, Spin, Image, Progress } from "antd"; import { Empty } from "../../compenents"; import mediaIcon from "../../assets/images/commen/icon-medal.png"; import { useNavigate } from "react-router-dom"; +import { useSelector } from "react-redux"; const LatestLearnPage = () => { const navigate = useNavigate(); + const systemConfig = useSelector((state: any) => state.systemConfig.value); const [loading, setLoading] = useState(false); const [courses, setCourses] = useState([]); @@ -114,7 +116,7 @@ const LatestLearnPage = () => { ))} -
~莫道桑榆晚,为霞尚满天~
+
{systemConfig.pcIndexFooterMsg}
); };