Allow pluggable widgets to contain other widgets.
Ideally, in the pluggable widget code it should be possible to use the standard react way of rendering the children, e.g:
const MyWidget = ({ children }) => <div>{children}</div>;