UNPKG

create-bhvr

Version:

Create a new bhvr project

7 lines (6 loc) 241 B
import { type PropsWithChildren, type ReactNode } from "react"; type ClientOnlyProps = PropsWithChildren & { fallback?: ReactNode; }; declare const ClientOnly: ({ children, fallback }: ClientOnlyProps) => any; export default ClientOnly;