UNPKG

@uifabric/utilities

Version:

Fluent UI React utilities for building components.

9 lines (8 loc) 224 B
/** * Render function interface for providing overrideable render callbacks. * * @public */ export interface IRenderFunction<P> { (props?: P, defaultRender?: (props?: P) => JSX.Element | null): JSX.Element | null; }