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) 444 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={'imageUpload.php'} fileInputName={'fileToUpload'} /> ) } } ReactDOM.render(<App />, document.getElementById('app'));