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) 463 B
import React from 'react'; import ReactDOM from 'react-dom'; import JqxPasswordInput from '../../../jqwidgets-react/react_jqxpasswordinput.js'; class App extends React.Component { render() { return ( <JqxPasswordInput ref='passwordInput' width={'50%'} height={25} placeHolder={'Enter password:'} /> ) } } ReactDOM.render(<App />, document.getElementById('app'));