UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

11 lines (10 loc) 401 B
import React from 'react'; import type { ComponentProps } from '../../types'; export type DataContextAtProps = ComponentProps & { /** JSON Pointer for where in the source dataset to point at in sub components */ path?: string; iterate?: boolean; children?: React.ReactNode; }; declare function At(props: DataContextAtProps): import("react/jsx-runtime").JSX.Element; export default At;