@aappddeevv/dynamics-client-ui
Version:
## What is it? A library to help you create great dynamics applications.
20 lines (19 loc) • 487 B
TypeScript
/// <reference types="react" />
/**
* Header, body for data looking content. Header looks like
* the header on a Dynamics table but the content can
* be anything.
*/
import * as React from "react";
export interface Classes {
root?: string;
header?: string;
content?: string;
}
export interface Props {
label: string;
classes?: Classes;
}
/** Show header and content (children). */
export declare const CrmDataPanel: React.SFC<Props>;
export default CrmDataPanel;