@j2inn/app-react
Version:
React implementation of the j2inn-app framework
13 lines (12 loc) • 374 B
TypeScript
import { App } from '@j2inn/app';
import React from 'react';
export interface RemoteAppStoreLoaderProps {
app?: App;
children?: React.ReactNode;
}
/**
* Loads the store for a remote application.
*
* This will load any store asynchronously.
*/
export declare const RemoteAppStoreLoader: ({ app, children, }: RemoteAppStoreLoaderProps) => JSX.Element;