11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
import React from 'react';
|
|
interface LandingPageProps {
|
|
onContinue?: () => void;
|
|
onGoToSignup?: () => void;
|
|
onGoToMap?: () => void;
|
|
onLoginSuccess?: (user: any) => void;
|
|
isInitialSetup?: boolean;
|
|
}
|
|
export declare const LandingPage: React.FC<LandingPageProps>;
|
|
export {};
|