UNPKG

@enonic/react-components

Version:

Library of React components for handling Enonic XP data and page components

12 lines (11 loc) 476 B
import type { ClassValue } from 'clsx'; import type { ComponentRegistry } from './ComponentRegistry'; import type { RenderableComponent } from '../types'; export interface RegionProps { as?: string; className?: ClassValue; components: RenderableComponent[]; componentRegistry: ComponentRegistry; name: string; } export declare const Region: ({ as, className, components, componentRegistry, name, }: RegionProps) => import("react/jsx-runtime").JSX.Element;