UNPKG

funuicss

Version:

React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b

13 lines (12 loc) 261 B
// videoShortcuts.ts export const handleKeyDown = ( e: KeyboardEvent, isPlaying: boolean, playVideo: () => void, pauseVideo: () => void ) => { if (e.key === ' ') { e.preventDefault(); isPlaying ? pauseVideo() : playVideo(); } };