UNPKG

bknd

Version:

Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.

8 lines (7 loc) 259 B
import { type ComponentType, type ReactNode } from "react"; export declare function Routes({ BkndWrapper, basePath, }: { BkndWrapper: ComponentType<{ children: ReactNode; }>; basePath?: string; }): import("react/jsx-runtime").JSX.Element;