UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

11 lines (8 loc) 262 B
import { jsx, Fragment } from 'react/jsx-runtime'; function For(props) { if (!props.each || !props.each.length) { return props.fallback || null; } return /* @__PURE__ */ jsx(Fragment, { children: props.each?.map(props.children) }); } export { For };