UNPKG

@ark-ui/solid

Version:

A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.

10 lines (7 loc) 230 B
import { JSX } from 'solid-js'; interface ClientOnlyProps { children: JSX.Element; fallback?: JSX.Element; } declare function ClientOnly(props: ClientOnlyProps): JSX.Element; export { ClientOnly, type ClientOnlyProps };