UNPKG

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) 295 B
import { type ComponentType, type ReactNode } from "react"; export declare function Routes({ BkndWrapper, basePath, children, }: { BkndWrapper: ComponentType<{ children: ReactNode; }>; basePath?: string; children?: ReactNode; }): import("react/jsx-runtime").JSX.Element;