Van Tigranyan
Van Tigranyan
> I didn't find anything outside of official docs either. I assume since there are examples of both remote and local services we should basically combine them making the setup...
ping @MostafaTaghipour
you most likely forgot to add singletion: true to shared deps configuration of react. Also always add required version for react too, so that runtime has easier time understanding which...
It should be: ``` shared: { 'react': { singleton: true, requiredVersion: '^18.3.1' }, 'react-dom': { singleton: true, requiredVersion: '^18.3.1' }, } ```