Rocky_Mountain_Vending/.pnpm-store/v10/files/0e/f6f97ecd433154f76c6ac3f0f8efcaf70b1facb4d6b55de4c5f8abadc57ad82c458313531cd5859d4812a96e9d4f55bf0d76fd77d31b9441c3581155300653
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

16 lines
470 B
Text

import * as lib from '@react-email/components'
import { Heading } from '@react-email/components'
import Hook from '../../index.js'
import { strictEqual } from 'assert'
Hook((exports, name) => {
if (name.match(/@react-email\/components/)) {
exports.Heading = function wrappedHeading () {
return 'heading-wrapped'
}
}
})
strictEqual(typeof lib.Button, 'function')
strictEqual(lib.Heading(), 'heading-wrapped')
strictEqual(Heading(), 'heading-wrapped')