This tutorial will show you how to use Create React App along with the React Components by jQWidgets.
Please, follow the instructions below:
I. Install the Create React App globally, so we can have it's commands available:
npm install -g create-react-app
II. Create an Create React App application:
npx create-react-app my-app --typescript
III. Navigate to the application:
cd my-app
IV. Install the jQWidgets dependency:
npm install jqwidgets-scripts --save--dev
V. Go to src folder, open App.tsx and replace it content with:
VI. Run the Create React App development server:
npm start