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) • 535 B
JavaScript
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={600} height={25} radix={'binary'} spinButtons={true} dropDown={true}
value={'1111111111111111111111111111111111111111111111111111111111110110'}
/>
)
}
}
ReactDOM.render(<App />, document.getElementById('app'));