重新构建路由和配置样式文件

This commit is contained in:
2025-03-26 10:04:27 +08:00
parent a42a9990bf
commit 97ccf5a077
141 changed files with 88034 additions and 179 deletions
+20
View File
@@ -0,0 +1,20 @@
import { Outlet } from "@remix-run/react";
import { type MetaFunction } from "@remix-run/node";
export const meta: MetaFunction = () => {
return [
{ title: "中国烟草AI合同及卷宗审核系统 - 规则管理" },
{ name: "description", content: "规则管理页面" }
];
};
/**
* 规则管理路由布局
*/
export default function RulesLayout() {
return (
<>
<Outlet />
</>
);
}