UNPKG

jqwidgets-scripts-custom

Version:

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

27 lines (23 loc) 1.26 kB
import React from 'react'; import ReactDOM from 'react-dom'; import JqxTextArea from '../../../jqwidgets-react/react_jqxtextarea.js'; class App extends React.Component { render () { let quotes = []; quotes.push('Life is a dream for the wise, a game for the fool, a comedy for the rich, a tragedy for the poor.'); quotes.push('Yesterday is not ours to recover, but tomorrow is ours to win or lose.'); quotes.push('It does not matter how slowly you go as long as you do not stop.'); quotes.push('Success depends upon previous preparation, and without such preparation there is sure to be failure.'); quotes.push('Better a diamond with a flaw than a pebble without.'); quotes.push('To succeed in life, you need two things: ignorance and confidence.'); quotes.push('A successful man is one who can lay a firm foundation with the bricks others have thrown at him.'); quotes.push('Sleep is the best meditation.'); return ( <JqxTextArea width={300} height={90} source={quotes} minLength={1} placeHolder={'Enter a sentence'} /> ) } } ReactDOM.render(<App />, document.getElementById('app'));