Getting Started

20 Mar 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.

 ```bash
   npm install -g create-react-app
 ```

Start a new project using create-react-app command as follows

   <div class='tsx'>
   ```
   create-react-app quickstart --scripts-version=react-scripts-ts
   cd quickstart
   ```
  </div>
 <div class='jsx'>
 ```
 create-react-app quickstart
 cd quickstart
 ```
</div>

‘react-scripts-ts’ is used for creating React app with typescript.

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 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>
      <ProgressButtonComponent content='Spin Left' />
    </div>
  );
}
export default App;
import { ProgressButtonComponent } from '@syncfusion/ej2-react-splitbuttons';
import * as React from 'react';
import './App.css';
// To render ProgressButton.
function App() {
    return (<div>
      <ProgressButtonComponent content='Spin Left'/>
    </div>);
}
export default App;

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";

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
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