Files
leaudit-platform-frontend/app/routes/rule-groups.tsx
T

20 lines
509 B
TypeScript

import { Outlet } from "@remix-run/react";
import { type MetaFunction } from "@remix-run/node";
export const links = () => [
{ rel: "stylesheet", href: "/rule-groups.css" }
];
export const meta: MetaFunction = () => {
return [
{ title: "中国烟草AI合同及卷宗审核系统 - 评查点分组管理" },
{ name: "description", content: "评查点分组管理页面" }
];
};
/**
* 评查点分组管理路由布局
*/
export default function RuleGroupsLayout() {
return <Outlet />;
}