首页底部一句话显示

This commit is contained in:
none
2023-03-28 10:28:50 +08:00
parent 3065d346ea
commit b0111178f6
2 changed files with 3 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ import iconRoute from "../../assets/images/commen/icon-route.png";
import { studyTimeFormat } from "../../utils/index";
const IndexPage = () => {
const systemConfig = useSelector((state: any) => state.systemConfig.value);
const [loading, setLoading] = useState<boolean>(false);
const [tabKey, setTabKey] = useState(0);
const [coursesList, setCoursesList] = useState<any>([]);
@@ -280,7 +281,7 @@ const IndexPage = () => {
))}
</div>
)}
<div className={styles["extra"]}>~~</div>
<div className={styles["extra"]}>{systemConfig.pcIndexFooterMsg}</div>
</>
);
};