UNPKG

@j2inn/app-react

Version:

React implementation of the j2inn-app framework

11 lines (10 loc) 395 B
import React from 'react'; export interface RemoteResourcesProps extends Record<string, unknown> { 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: ({ urls, children, }: RemoteResourcesProps) => JSX.Element;