UNPKG

@ucloud-pccl/react-components

Version:
9 lines (8 loc) 277 B
import React from 'react'; export type GetRef = (name: string) => HTMLElement | null; export type SaveRef = (name: string) => (node: HTMLElement | null) => void; declare const RefContext: React.Context<{ getRef: GetRef; saveRef: SaveRef; }>; export default RefContext;