10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
// app/routes/rule-groups.tsx
|
|
import { Outlet } from "@remix-run/react";
|
|
|
|
export const handle = {
|
|
breadcrumb: "评查规则库"
|
|
};
|
|
|
|
export default function RuleGroupsLayout() {
|
|
return <Outlet />
|
|
} |