Rocky_Mountain_Vending/.pnpm-store/v10/files/3b/9d798c255ea848e7cb2e07d122ba29b436ec6ff0c5c586f314521c525cf03941dae10877505cdcc4cac65207b766a955c764a9dccbfec7a793bd54c8119f2c
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

12 lines
412 B
Text

import type { ComponentModule } from './types';
interface LoadableOptions {
loader?: () => Promise<React.ComponentType<any> | ComponentModule<any>>;
loading?: React.ComponentType<any> | null;
ssr?: boolean;
modules?: string[];
}
declare function Loadable(options: LoadableOptions): {
(props: any): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default Loadable;