next.js/test/e2e/app-dir/dynamic/app/default-loading/dynamic-component.js
dynamic-component.js13 lines336 B
const isDevTest = false

const DynamicImportComponent = () => {
  if (isDevTest && typeof window === 'undefined') {
    throw new Error('This component should only be rendered on the client side')
  }
  return (
    <div id="dynamic-component">This is a dynamically imported component</div>
  )
}

export default DynamicImportComponent
Quest for Codev2.0.0
/
SIGN IN