7 lines
160 B
TypeScript
7 lines
160 B
TypeScript
import React from 'react';
|
|
interface LandingPageProps {
|
|
onContinue?: () => void;
|
|
}
|
|
export declare const LandingPage: React.FC<LandingPageProps>;
|
|
export {};
|