// @ts-nocheck import React, { Suspense } from 'react'; import { DrawerLoading } from '@/components'; /** * Loading content. */ function LoadingContent() { return ; } export function DrawerSuspense({ children }) { return }>{children}; }