UNPKG

@erosnicolau/animated-text

Version:

Advanced React animated text component with comprehensive animation effects

10 lines (9 loc) 335 B
import { useContext } from 'react'; import { AnimatedTextGroupContext } from '../contexts/AnimatedTextGroupContext'; /** * Custom hook to access the AnimatedTextGroup context * Must be used within AnimatedTextGroupProvider component */ export const useAnimatedTextGroup = () => { return useContext(AnimatedTextGroupContext); };