I am currently working on a React component that contains two modals structured like this:
render{
return(
<div>
<ParentModal>
<ChildModal/>
</ParentModal>
</div>
)
}
I have experimented with backdrop CSS and blur effects, but I encountered an issue where both modals are being blurred when the child modal is opened. My goal is to only blur the parent modal when the child modal is opened.