UNPKG

@j2inn/app-react

Version:

React implementation of the j2inn-app framework

11 lines (10 loc) 325 B
/// <reference types="react" /> import { AppProps, RemoteAppView } from '@j2inn/app'; /** * A remote view for an application. */ export declare const RemoteView: ({ isReactComponent, path, view, ...props }: { isReactComponent: boolean; path: string; view: RemoteAppView; } & AppProps) => JSX.Element;