UNPKG

@enonic/react-components

Version:

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

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