UNPKG

jqwidgets-scripts-custom

Version:

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

18 lines (14 loc) 450 B
import React from 'react'; import ReactDOM from 'react-dom'; import JqxFileUpload from '../../../jqwidgets-react/react_jqxfileupload.js'; class App extends React.Component { render() { return ( <JqxFileUpload width={300} uploadUrl={'upload.php'} fileInputName={'fileToUpload'} rtl={true} /> ) } } ReactDOM.render(<App />, document.getElementById('app'));