Files
leaudit-platform-frontend/app/routes/rules.tsx
T

20 lines
419 B
TypeScript

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 />
</>
);
}