Getting Started

3 Dec 20233 minutes to read

This section explains how to create a simple ProgressButton and to configure it.

Dependencies

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

Installation and configuration

You can use create-react-app to setup the
applications.
To install create-react-app run the following command.

  npm install -g create-react-app

To set-up a React application in TypeScript environment, run the following command.

npx create-react-app my-app --template typescript

cd my-app

npm start

To set-up a React application in JavaScript environment, run the following command.

npx create-react-app my-app

cd my-app

npm start

Adding syncfusion packages

All the available Essential JS 2 packages are published in
npmjs.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

Adding CSS reference

Import the ProgressButton component required CSS references as follows in src/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";

Adding ProgressButton component

Now, you can start adding ProgressButton component in the application. For getting started, add the
ProgressButton component in src/App.tsx file using following code.

Add the below code in the src/App.tsx to initialize the ProgressButton.

import { ProgressButtonComponent } from '@syncfusion/ej2-react-splitbuttons';
import * as React from 'react';
import './App.css';

// To render ProgressButton.
function App() {

  return (<div style=>
      <ProgressButtonComponent content='Spin Left'/>
    </div>
  );
}
export default App;

Run the application

After completing the configuration required to render a basic ProgressButton, run the following command to
display the output in your default browser.

npm start

The following example shows a basic Progress button component.

import { ProgressButtonComponent } from '@syncfusion/ej2-react-splitbuttons';
import * as React from 'react';
import * as ReactDom from 'react-dom';
// To render ProgressButton.
function App() {
    return (<div>
    <ProgressButtonComponent content='Spin Left'/>
    </div>);
}
export default App;
ReactDom.render(<App />, document.getElementById('progress-button'));
import { ProgressButtonComponent } from '@syncfusion/ej2-react-splitbuttons';
import * as React from 'react';
import * as ReactDom from 'react-dom';

// To render ProgressButton.
function App() {

  return (
  <div>
    <ProgressButtonComponent content='Spin Left'/>
    </div>
  );
}
export default App;
ReactDom.render(<App />,document.getElementById('progress-button'));

ProgressButton supports different styles, types and sizes like Button. In addition, it also supports top and bottom icon positions.

See Also