@j2inn/app-react
Version:
React implementation of the j2inn-app framework
8 lines (7 loc) • 326 B
TypeScript
/// <reference types="react" />
import { AppEditorProps, AppProps, RemoteAppView } from '@j2inn/app';
export interface RemoteAppViewRendererProps {
view: RemoteAppView;
appProps: AppProps | AppEditorProps;
}
export declare const RemoteAppViewRenderer: ({ view, appProps, }: RemoteAppViewRendererProps) => JSX.Element;