We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d93533 commit 96cc2a1Copy full SHA for 96cc2a1
src/app/app/virtual-lab/(free)/explore/layout.tsx
@@ -3,9 +3,12 @@
3
import { ReactNode, useEffect } from 'react';
4
import { ErrorBoundary } from 'react-error-boundary';
5
import { useSetAtom } from 'jotai/index';
6
+import dynamic from 'next/dynamic';
7
+
8
import SimpleErrorComponent from '@/components/GenericErrorFallback';
9
import { sectionAtom } from '@/state/application';
-import LitteratureSuggestions from '@/components/literature-suggestions';
10
11
+const LitteratureSuggestions = dynamic(() => import('@/components/literature-suggestions'));
12
13
import styles from './layout.module.css';
14
0 commit comments