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

23 lines
487 B
TypeScript

import { Outlet } from "@remix-run/react";
import { type MetaFunction } from "@remix-run/node";
export const meta: MetaFunction = () => {
return [
{ title: "文档列表 - 中国烟草AI合同及卷宗审核系统" },
{ name: "documents", content: "文档列表,新增,修改" }
]
}
export const handle = {
breadcrumb: "文档列表"
}
/**
* 文档列表路由布局
*/
export default function DocumentsLayout() {
return (
<Outlet />
)
}