bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
9 lines (8 loc) • 390 B
TypeScript
import { type BkndAdminOptions } from "../ui/client/bknd";
import { type ClientProviderProps } from "./client";
export type BkndAdminProps = {
baseUrl?: string;
withProvider?: boolean | ClientProviderProps;
config?: BkndAdminOptions;
};
export default function Admin({ baseUrl: baseUrlOverride, withProvider, config, }: BkndAdminProps): import("react/jsx-runtime").JSX.Element;