UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

8 lines 216 B
import showWaveEffect from './WaveEffect'; export default function useWave(nodeRef, className) { function showWave() { const node = nodeRef.current; showWaveEffect(node, className); } return showWave; }