mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 14:44:21 +00:00
25 lines
597 B
TypeScript
25 lines
597 B
TypeScript
import { ReactNode, Suspense } from "react"
|
|
import { LoadingInline, LoadingMain } from "./renderers"
|
|
|
|
|
|
export type LoadingBoundaryProps = {
|
|
text?: string,
|
|
children: ReactNode,
|
|
}
|
|
|
|
|
|
export function LoadingBoundaryMain({ text, children }: LoadingBoundaryProps) {
|
|
return (
|
|
<Suspense fallback={<LoadingMain text={text} />}>
|
|
{children}
|
|
</Suspense>
|
|
)
|
|
}
|
|
|
|
export function LoadingBoundaryInline({ text, children }: LoadingBoundaryProps) {
|
|
return (
|
|
<Suspense fallback={<LoadingInline text={text} />}>
|
|
{children}
|
|
</Suspense>
|
|
)
|
|
}
|