Revert "feat: fix the problem in the Operator Market frontend pages"

This commit is contained in:
Kecheng Sha
2025-12-29 12:00:37 +08:00
committed by GitHub
parent 8f30f71a68
commit 0df7a872e4
213 changed files with 45537 additions and 45547 deletions

View File

@@ -1,23 +1,23 @@
import React, { memo } from "react";
import { Outlet } from "react-router";
import Sidebar from "./Sidebar";
const MainLayout = () => {
return (
<div className="w-full h-screen flex flex-col bg-gray-50 min-w-6xl">
<div className="w-full h-full flex">
{/* Sidebar */}
<Sidebar />
{/* Main Content */}
<div className="flex-overflow-auto p-6">
{/* Content Area */}
<div className="flex-overflow-auto">
<Outlet />
</div>
</div>
</div>
</div>
);
};
export default memo(MainLayout);
import React, { memo } from "react";
import { Outlet } from "react-router";
import Sidebar from "./Sidebar";
const MainLayout = () => {
return (
<div className="w-full h-screen flex flex-col bg-gray-50 min-w-6xl">
<div className="w-full h-full flex">
{/* Sidebar */}
<Sidebar />
{/* Main Content */}
<div className="flex-overflow-auto p-6">
{/* Content Area */}
<div className="flex-overflow-auto">
<Outlet />
</div>
</div>
</div>
</div>
);
};
export default memo(MainLayout);