Rocky_Mountain_Vending/.pnpm-store/v10/files/98/4e53e1ef627d9f3000cb2e182ca9c2cf6e74c9be513eb7dc7c98a4c78a7b40ab297c7bdd869f9deb3030133ca2f80b438f1d145eff0799687804a42d855a2f
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
502 B
Text

import * as React from 'react';
const SideCar = ({ sideCar, ...rest }) => {
if (!sideCar) {
throw new Error('Sidecar: please provide `sideCar` property to import the right car');
}
const Target = sideCar.read();
if (!Target) {
throw new Error('Sidecar medium not found');
}
return React.createElement(Target, { ...rest });
};
SideCar.isSideCarExport = true;
export function exportSidecar(medium, exported) {
medium.useMedium(exported);
return SideCar;
}