MatxSuspense.jsx
1 import { Suspense } from "react"; 2 import { MatxLoading } from "app/components"; 3 4 export default function MatxSuspense({ children }) { 5 return <Suspense fallback={<MatxLoading />}>{children}</Suspense>; 6 }
1 import { Suspense } from "react"; 2 import { MatxLoading } from "app/components"; 3 4 export default function MatxSuspense({ children }) { 5 return <Suspense fallback={<MatxLoading />}>{children}</Suspense>; 6 }