Does anyone know of a way to pass existing DCC or Dash HTML Components to a Custom React Component?

Hello! I am building a wrapper around the MUI DataGrid component to leverage it in our Dash app using the boilerplate template, and I was wondering if anyone knew of a way to extract the underlying React component from say a dcc.Dropdown or the like. I want to take that and pass it to the cells of the DataGrid table so I can handle its interaction through Python. It looks like the only thing exposed when you create one of these objects on the Python side are the props and children, but I am not sure if there is a way to get the component itself.

Thanks!