UNPKG

@enonic/react-components

Version:

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

8 lines (7 loc) 365 B
import type { Region as RegionType } from '@enonic-types/core'; import type { ComponentRegistry } from './ComponentRegistry'; export interface RegionsProps { componentRegistry: ComponentRegistry; regions: Record<string, RegionType>; } export declare function Regions({ componentRegistry, regions }: RegionsProps): import("react/jsx-runtime").JSX.Element[];