UNPKG

@fluentui/react

Version:

Reusable React components for building web experiences.

9 lines (7 loc) 247 B
import * as React from 'react'; // Mirror of the removed interface React.Props<T> since React 18 export interface IReactProps<T> { children?: React.ReactNode | undefined; key?: React.Key | undefined; ref?: React.LegacyRef<T> | undefined; }