Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
9 years ago
Solved

react

Has anyone used React to develop a custom visual? I'm running into various problems in getting started. Namely, I'm gettting typescript errors on the typings for react and react-dom as well as not ge...
  • Anonymous's avatar
    Anonymous
    9 years ago

    I got this workaround from David Tittsworth...Thanks! 

     

    Add a global.js file with contents:

    var React = window.React;

    var ReactDOM = window.ReactDOM;

     

    and then in pbiviz.json, add a reference to the global.js file in externalJS at the bottom.

     

    This works!