"use client"; import { Admin, type BkndAdminProps } from "bknd/ui"; export const AdminImpl = (props: BkndAdminProps) => { if (typeof window === "undefined") { return null; } return ( ); }; export default AdminImpl;