Files
travelplanning/dist/LandingPage.d.ts
T

10 lines
249 B
TypeScript

import React from 'react';
interface LandingPageProps {
onContinue?: () => void;
onGoToSignup?: () => void;
onGoToMap?: () => void;
isInitialSetup?: boolean;
}
export declare const LandingPage: React.FC<LandingPageProps>;
export {};