Passing Flask Python Variables On The Server To Reactjs As Props
I'm trying to pass flask variables from the server to react but I can't get it working. At the moment I have a render function in a reactjs file that looks like: ReactDOM.render(
Solution 1:
It should be
<Attribute prop1={ prop1 } prop2={ prop2 } />
Post a Comment for "Passing Flask Python Variables On The Server To Reactjs As Props"