import type { EditorContainer } from '@blocksuite/editor'; import { atom } from 'jotai'; export const lottieAtom = atom(import('lottie-web').then(m => m.default)); export const editorContainerModuleAtom = atom>( typeof window === 'undefined' ? async () => import('@blocksuite/editor').then(module => module.EditorContainer) : (import('@blocksuite/editor').then( module => module.EditorContainer ) as any) );