FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surerank
/
src
/
apps
/
admin-components
/
hoc
Edit File: with-suspense.js
import { Suspense } from '@wordpress/element'; import AdminLoadingSkeleton from '../loading-skeleton'; const withSuspense = ( Component, FallbackComponent = AdminLoadingSkeleton ) => { return ( props ) => { return ( <Suspense fallback={ <FallbackComponent /> }> <Component { ...props } /> </Suspense> ); }; }; export default withSuspense;
Save
Back