9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
import { RoutingRulesView } from "@/app/workspace/routing-rules/views/routingRulesView";
|
|
|
|
export default function ProvidersRoutingRulesPage() {
|
|
return (
|
|
<div className="mx-auto w-full max-w-7xl">
|
|
<RoutingRulesView />
|
|
</div>
|
|
);
|
|
} |