Hi team,
How to use this package without npm?
React (in combination with ReactDOM) can be used without npm out of the box. Like old fashioned commonjs library, e.g.
JavaScript<script src="react.production.min.js"></script>
<script src="react-dom.production.min.js"></script>
....
ReactDOM.render(
React.createElement(component, props),
htmlElement
);
What about devextreme-react, how to use it in the same way?