finalize waku example

This commit is contained in:
dswbx
2025-07-09 08:21:39 +02:00
parent e21f1a3ee2
commit b4d6b1c04d
8 changed files with 10 additions and 28 deletions
@@ -0,0 +1,23 @@
"use client";
import { Admin, type BkndAdminProps } from "bknd/ui";
export const AdminImpl = (props: BkndAdminProps) => {
if (typeof window === "undefined") {
return null;
}
return (
<Admin
withProvider
config={{
basepath: "/admin",
logo_return_path: "/../",
...props.config,
}}
{...props}
/>
);
};
export default AdminImpl;