UNPKG

@fidely-ui/react

Version:

Fidely UI is a modern, beautifully crafted React design system powered by Ark UI and Panda CSS, delivering accessible and themeable components for building exceptional web apps

13 lines (12 loc) 375 B
'use client'; import { jsx as _jsx } from "react/jsx-runtime"; import { ClientOnly as ArkClientOnly } from '@ark-ui/react/client-only'; /** * Fidely UI ClientOnly * * Wraps Ark UI's ClientOnly to render content only on the client. * Supports a `fallback` for SSR/initial render. */ export const ClientOnly = (props) => { return _jsx(ArkClientOnly, { ...props }); };