UNPKG

jqwidgets-scripts-custom

Version:

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

47 lines (43 loc) 1.25 kB
import React from 'react'; import ReactDOM from 'react-dom'; import JqxDropDownList from '../../../jqwidgets-react/react_jqxdropdownlist.js'; class App extends React.Component { render() { let source = [ 'Affogato', 'Americano', 'Bicerin', 'Breve', 'Cafe Bombon', 'Cafe au lait', 'Caffe Corretto', 'Cafe Crema', 'Caffe Latte', 'Caffe macchiato', 'Cafe melange', 'Coffee milk', 'Cafe mocha', 'Cappuccino', 'Carajillo', 'Cortado', 'Cuban espresso', 'Espresso', 'Eiskaffee', 'The Flat White', 'Frappuccino', 'Galao', 'Greek frappe coffee', 'Iced Coffee', 'Indian filter coffee', 'Instant coffee', 'Irish coffee', 'Liqueur coffee' ]; return ( <JqxDropDownList width={200} height={25} source={source} selectedIndex={1} /> ) } } ReactDOM.render(<App />, document.getElementById('app'));