UNPKG

@grafana/ui

Version:
11 lines (10 loc) 294 B
import * as React from 'react'; interface Props { children: React.ReactNode; delay: number; } /** * Delay the rendering of the children by N amount of milliseconds */ export declare function DelayRender({ children, delay }: Props): import("react/jsx-runtime").JSX.Element; export {};