const isDevTest = false const DynamicImportComponent = () => { if (isDevTest && typeof window === 'undefined') { throw new Error('This component should only be rendered on the client side') } return (
This is a dynamically imported component
) } export default DynamicImportComponent