@j2inn/app-react
Version:
React implementation of the j2inn-app framework
13 lines (12 loc) • 372 B
TypeScript
import React from 'react';
/**
* Properties for the suspense component.
*/
export interface SuspenseProps {
children?: React.ReactNode;
fallback?: JSX.Element;
}
/**
* A reusable suspense component with a default fallback loader.
*/
export declare const Suspense: ({ children, fallback }: SuspenseProps) => import("react/jsx-runtime").JSX.Element;