UNPKG

ra-core

Version:

Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React

13 lines 530 B
import * as React from 'react'; import { RaRecord } from '../../types'; /** * Render the record representation as specified on its parent <Resource>. * @param props The component props * @param {string} props.resource The resource name * @param {RaRecord} props.record The record to render */ export declare const RecordRepresentation: (props: { record?: RaRecord<import("../../types").Identifier> | undefined; resource?: string | undefined; }) => React.JSX.Element; //# sourceMappingURL=RecordRepresentation.d.ts.map