Files
leaudit-platform-frontend/app/routes/cross-checking.tsx
T

23 lines
479 B
TypeScript

import { Outlet } from "react-router-dom";
import {type MetaFunction} from "@remix-run/node";
export const meta: MetaFunction = () => {
return [
{title: "交叉评查 - 中国烟草AI合同及卷宗审核系统"},
{name: "cross-checking", content: "交叉评查"}
]
}
export const handle = {
breadcrumb: "交叉评查"
}
/**
* 交叉评查路由布局
*/
export default function CrossCheckingLayout() {
return (
<Outlet />
)
}