Set the dropdown menuAppendTo prop to parent in order to allow the dropdown menu
break out of the modal container. You'll also want to handle closing of the modal yourself, by listening to
the onEscapePress callback on the Modal component, so you can close the Dropdown first if
it's open without closing the entire modal.
Dropdown with a menu that can break out
}
isOpen={isDropdownOpen}
dropdownItems={dropdownItems}
menuAppendTo="parent"
/>