feat: fix the problem in the Operator Market frontend pages

This commit is contained in:
root
2025-12-29 11:38:47 +08:00
parent 29e4a333a9
commit 844add27ea
213 changed files with 45547 additions and 45537 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);