Files
starface-outlook-sync-addin/node_modules/@fluentui/utilities/lib-amd/IRenderComponent.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

14 lines
412 B
TypeScript

import type { JSXElement } from './jsx';
/**
* An interface representing a component that will not output any DOM, will just render its children and
* pass through items to modify the children.
*
* {@docCategory IRenderComponent}
*/
export interface IRenderComponent<TProps> {
/**
* JSXElement to return in this component's render() function.
*/
children: (props: TProps) => JSXElement;
}