完成系统配置布局

This commit is contained in:
宇阳
2024-08-08 16:56:37 +08:00
parent b5c47add88
commit da53310c9d
5 changed files with 97 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ import { BiGlobe, BiLayout, BiShieldQuarter, BiUser } from 'react-icons/bi';
import System from './components/System'
import Web from './components/Web'
import Layout from './components/Layout'
import My from './components/My'
import "./index.scss"
interface Setup {
@@ -71,7 +72,7 @@ const SetupPage = () => {
{active === "system" && <System />}
{active === "web" && <Web />}
{active === "layout" && <Layout />}
{/* {active === "my" && <My />} */}
{active === "my" && <My />}
</div>
</div>
</Card>