Initial commit from agent-native create
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import { DbAdminPage } from "@agent-native/core/client/db-admin";
|
||||
import { useT } from "@agent-native/core/client/i18n";
|
||||
import { useSetPageTitle } from "@agent-native/toolkit/app-shell";
|
||||
|
||||
export function meta() {
|
||||
return [{ title: "Database" }];
|
||||
}
|
||||
|
||||
export default function DatabasePage() {
|
||||
const t = useT();
|
||||
useSetPageTitle(t("pages.databaseTitle"));
|
||||
return (
|
||||
<div className="h-full">
|
||||
<DbAdminPage />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user