Rocky_Mountain_Vending/.pnpm-store/v10/files/d5/b8d92df83111dcf83eaa436a847e8a17114349faac2abbc53866f349bfab533d7425cdc76d2bb661f51c2ba4a1bc0228421457f5d8aa24707491484cbe3170
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

11 lines
No EOL
330 B
Text

import addEventListener from './addEventListener';
import removeEventListener from './removeEventListener';
function listen(node, eventName, handler, options) {
addEventListener(node, eventName, handler, options);
return function () {
removeEventListener(node, eventName, handler, options);
};
}
export default listen;