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