UNPKG

@j2inn/app-react

Version:

React implementation of the j2inn-app framework

12 lines (11 loc) 411 B
import React from 'react'; export interface RemoteResourcesProps extends Record<string, unknown> { scope: string; urls: string[]; children?: React.ReactNode; } /** * Loads remote resources dynamically. The child components will only render once * the script has been successfully loaded. */ export declare const RemoteResources: ({ scope, urls, children, }: RemoteResourcesProps) => JSX.Element;