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) • 451 B
Plain Text
import React from 'react';
import ReactDOM from 'react-dom';
import JqxFormattedInput from '../../../jqwidgets-react/react_jqxformattedinput.js';
class App extends React.Component {
render () {
return (
<JqxFormattedInput
width={200} height={25} radix={'decimal'}
value={15} spinButtons={true} dropDown={true}>
</JqxFormattedInput>
)
}
}
ReactDOM.render(<App />, document.getElementById('app'));