底部tabBar组件

This commit is contained in:
禺狨
2023-06-25 14:05:35 +08:00
parent b9009f6f9e
commit f93467db13
8 changed files with 135 additions and 7 deletions

View File

@@ -2,6 +2,7 @@ import { useEffect, useState } from "react";
import { user } from "../../api/index";
import styles from "./index.module.scss";
import { useSelector } from "react-redux";
import { Footer, TabBarFooter } from "../../components";
const IndexPage = () => {
const systemConfig = useSelector((state: any) => state.systemConfig.value);
@@ -20,7 +21,11 @@ const IndexPage = () => {
return (
<div className="main-body">
<div className="content"></div>
<div className="content">
<Footer></Footer>
</div>
<TabBarFooter></TabBarFooter>
</div>
);
};