### Current Situation ReactJS appears to support nested context. However, in IDOM situations like the following simply don't render... ```python return ModalStateContext( HomepageStateContext( navbar(), modal(), sidebar(), viewport_loading_animation(), viewport(), backdrop(), value=home_state, ), value=modal_state, ) ``` ### Proposed Actions Modify the `ContextProvider` to support nested contexts.