12 Jul 20253 minutes to read
This section explains how to create a simple ProgressButton and to configure it.
The list of dependencies required to use the ProgressButton component in your application is given as follows:
|--@syncfusion/ej2-react-splitbuttons|--@syncfusion/ej2-react-base|--@syncfusion/ej2-base|--@syncfusion/ej2-splitbuttons|--@syncfusion/ej2-popups|--@syncfusion/ej2-buttons
To easily set up a React application, usecreate-vite-app
, which provides a faster development environment, smaller bundle sizes, and optimized builds compared to traditional tools likecreate-react-app
. For detailed steps, refer to the Viteinstallation instructions. Vite sets up your environment using JavaScript and optimizes your application for production.
Note: To create a React application using
create-react-app
, refer to thisdocumentation for more details.
To create a new React application, run the following command.
npm create vite@latest my-app
To set-up a React application in TypeScript environment, run the following command.
npm create vite@latest my-app -- --template react-tscd my-appnpm run dev
To set-up a React application in JavaScript environment, run the following command.
npm create vite@latest my-app -- --template reactcd my-appnpm run dev
All the available Essential® JS 2 packages are published innpmjs.com
public registry.
You can choose the component that you want to install.
To install ProgressButton component, use the following command
npm install @syncfusion/ej2-react-splitbuttons --save
Import the ProgressButton component required CSS references as follows insrc/App.css
.
/* import the ProgressButton dependency styles */@import"../node_modules/@syncfusion/ej2-base/styles/material.css";@import"../node_modules/@syncfusion/ej2-buttons/styles/material.css";@import"../node_modules/@syncfusion/ej2-popups/styles/material.css";@import"../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css";
Now, you can start adding ProgressButton component in the application. For getting started, add the
ProgressButton component insrc/App.tsx
file using following code.
Add the below code in thesrc/App.tsx
to initialize the ProgressButton.
import{ProgressButtonComponent}from'@syncfusion/ej2-react-splitbuttons';import*asReactfrom'react';import'./App.css';// To render ProgressButton.functionApp(){return(<divstyle={{marginTop:'150px'}}><ProgressButtonComponentcontent='Spin Left'/></div>);}exportdefaultApp;
Now run thenpm run dev
command in the console to start the development server. This command compiles your code and serves the application locally, opening it in the browser.
npm run dev
The following example shows a basic Progress button component.
import{ProgressButtonComponent}from'@syncfusion/ej2-react-splitbuttons';import*asReactfrom'react';import*asReactDomfrom'react-dom';// To render ProgressButton.functionApp(){return(<div><ProgressButtonComponentcontent='Spin Left'/></div>);}exportdefaultApp;ReactDom.render(<App/>,document.getElementById('progress-button'));
import{ProgressButtonComponent}from'@syncfusion/ej2-react-splitbuttons';import*asReactfrom'react';import*asReactDomfrom'react-dom';// To render ProgressButton.functionApp(){return(<div><ProgressButtonComponentcontent='Spin Left'/></div>);}exportdefaultApp;ReactDom.render(<App/>,document.getElementById('progress-button'));
ProgressButton supports different styles, types and sizes like
Button
. In addition, it also supportstop
andbottom
icon positions.