import { LoadingIcon } from "@/components/LoadingIcon"; import { cn } from "@/lib/utils"; import { Suspense } from "react"; export function LoadingWrapper(props: { tag: string; children?: React.ReactNode; }) { return ( Fetching {props.tag} } > {props.children} ); } export function LoadingPageWrapper(props: { tag: string; children?: React.ReactNode; className?: string; }) { return (
Fetching {props.tag}
); }