/** * WordPress dependencies */ import { NoticeList, Popover, SlotFillProvider, } from '@safe-wordpress/components'; import { useSelect, useDispatch } from '@safe-wordpress/data'; import { _x } from '@safe-wordpress/i18n'; import { store as NOTICES } from '@safe-wordpress/notices'; /** * External dependencies */ import { isEmpty } from '@nab/utils'; /** * Internal dependencies */ import './style.scss'; import { Header } from '../header'; import { Sidebar } from '../sidebar'; import { EvolutionSection } from '../evolution-section'; import { AlternativeSection } from '../alternative-section'; import { AlternativePreviewDialog } from '../alternative-preview-dialog'; import { GoalSection } from '../goal-section'; import { SegmentationSection } from '../segmentation-section'; import { ExportModal } from '../export-modal'; export const Layout = (): JSX.Element => { const notices = useNotices(); const { removeNotice } = useDispatch( NOTICES ); return (