UNPKG

jqwidgets-scripts-custom

Version:

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

22 lines (18 loc) 626 B
import React from 'react'; import ReactDOM from 'react-dom'; import JqxMaskedInput from '../../../jqwidgets-react/react_jqxmaskedinput.js'; class App extends React.Component { render() { return ( <div> <div style={{ fontSize: 13, fontFamily: 'Verdana', marginTop: 10 }}> Phone Number </div> <JqxMaskedInput style={{ marginTop: 3 }} width={'50%'} height={35} mask={'(###)###-####'} /> </div> ) } } ReactDOM.render(<App />, document.getElementById('app'));