import { Suspense, lazy } from 'react'; import { viewableFrontComponentIdComponentState } from '@/command-menu/pages/front-component/states/viewableFrontComponentIdComponentState'; import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue'; import { isDefined } from 'twenty-shared/utils'; const FrontComponentRenderer = lazy(() => import('@/front-components/components/FrontComponentRenderer').then( (module) => ({ default: module.FrontComponentRenderer }), ), ); export const CommandMenuFrontComponentPage = () => { const viewableFrontComponentId = useAtomComponentStateValue( viewableFrontComponentIdComponentState, ); if (!isDefined(viewableFrontComponentId)) { return null; } return ( ); };