zmp-react
Version:
Build full featured iOS & Android apps using ZMP & React
24 lines (18 loc) • 520 B
TypeScript
import * as React from 'react';
import { ZMPParameters } from 'zmp-core/types';
interface AppProps extends ZMPParameters {
slot?: string;
className?: string;
style?: React.CSSProperties;
ref?: React.MutableRefObject<{el: HTMLElement | null}>;
color?: string;
colorTheme?: string;
textColor?: string;
bgColor?: string;
borderColor?: string;
rippleColor?: string;
themeDark?: boolean;
children?: React.ReactNode;
}
declare const App: React.FunctionComponent<AppProps>;
export default App;