import dynamic from 'next/dynamic' const DynamicComponentWithCustomLoading = dynamic( () => import('../components/hello'), { loading: () =>

...

} ) const DynamicClientOnlyComponent = dynamic( () => import('../components/hello'), { ssr: false } ) const DynamicClientOnlyComponentWithSuspense = dynamic( () => import('../components/hello'), { ssr: false, suspense: true } )