23 lines
479 B
TypeScript
23 lines
479 B
TypeScript
import { Outlet } from "@remix-run/react";
|
|
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 />
|
|
)
|
|
}
|