UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

10 lines (6 loc) 225 B
import * as React from 'react'; export interface RootRefProps<T = any> { rootRef?: ((instance: T | null) => void) | React.RefObject<T>; } declare const RootRef: React.ComponentType<RootRefProps>; export default RootRef;