first commit
This commit is contained in:
19
ui/app/workspace/routing-rules/tree/page.tsx
Normal file
19
ui/app/workspace/routing-rules/tree/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* Routing Tree Page
|
||||
* Full-canvas read-only routing rules decision tree visualizer.
|
||||
*/
|
||||
|
||||
import { RoutingTreeView } from "./views/routingTreeView";
|
||||
|
||||
export const metadata = {
|
||||
title: "Routing Tree | Bifrost",
|
||||
description: "Read-only decision tree visualization of routing rules",
|
||||
};
|
||||
|
||||
export default function RoutingTreePage() {
|
||||
return (
|
||||
<div className="no-padding-parent no-border-parent h-[calc(100dvh_)] w-full">
|
||||
<RoutingTreeView />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user