first commit
This commit is contained in:
6
ui/app/workspace/pii-redactor/providers/layout.tsx
Normal file
6
ui/app/workspace/pii-redactor/providers/layout.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import PiiRedactorProvidersPage from "./page";
|
||||
|
||||
export const Route = createFileRoute("/workspace/pii-redactor/providers")({
|
||||
component: PiiRedactorProvidersPage,
|
||||
});
|
||||
9
ui/app/workspace/pii-redactor/providers/page.tsx
Normal file
9
ui/app/workspace/pii-redactor/providers/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import PiiRedactorProviderView from "@enterprise/components/pii-redactor/piiRedactorProviderView";
|
||||
|
||||
export default function PiiRedactorProvidersPage() {
|
||||
return (
|
||||
<div className="mx-auto w-full max-w-7xl">
|
||||
<PiiRedactorProviderView />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user