Rocky_Mountain_Vending/.pnpm-store/v10/files/af/5eac81f6e9d8b4ce55ef877e3bbc3398f87ef3cf5dea5167519b353c092a567aa31ca2d28d866958385e9dc7223911b52bca2c583a1bff71ff2fd69ccfee95
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
403 B
Text

import type React from 'react';
import { type JSX } from 'react';
type State = JSX.Element[] | undefined;
export type SideEffectProps = {
reduceComponentsToState: (components: Array<React.ReactElement<any>>) => State;
handleStateChange?: (state: State) => void;
headManager: any;
children: React.ReactNode;
};
export default function SideEffect(props: SideEffectProps): null;
export {};