UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

20 lines (16 loc) 487 B
import React from 'react'; import ReactDOM from 'react-dom'; import JqxProgressBar from '../../../jqwidgets-react/react_jqxprogressbar.js'; class App extends React.Component { render() { return ( <JqxProgressBar ref='horizontalProgressBar' rtl={true} width={250} height={30} value={50} /> ) } } ReactDOM.render(<App />, document.getElementById('app'));