Thursday, November 20, 2025
HomeLanguagesJavascriptReact Suite List Component

React Suite List Component

React Suite is a popular front-end library with a set of React components that are designed for the middle platform and back-end products. List component allows the user to display a list. We can use the following approach in ReactJS to use the React Suite List Component.

List Props:

  • bordered: It is used for the bordered style.
  • hover: It is used for the hover animation.
  • sortable: It is used to change list item orders.
  • size: It is used to denote the list item’s size.
  • autoScroll: It is used to allow auto-scroll when overflowed.
  • pressDelay: It is used to denote the delay before trigger sort.
  • transitionDuration: It is used to denote the duration of sort animation.
  • onSortStart: It is a callback function triggered when beginning of sorting.
  • onSortMove: It is a callback function triggered when moving over a list item.
  • onSortEnd: It is a callback function triggered at when the end of sorting.
  • onSort: It is a callback function triggered when the end of sorting.

List.Item Props:

  • index: It is used to denote the index of an item.
  • collection: It is used to denote the collection of the list item.
  • disabled: It ensures that the item is not allowed to move.

 

Creating React Application And Installing Module:

  • Step 1: Create a React application using the following command:

    npx create-react-app foldername
  • Step 2: After creating your project folder i.e. foldername, move to it using the following command:

    cd foldername
  • Step 3: After creating the ReactJS application, Install the required module using the following command:

    npm install rsuite

Project Structure: It will look like the following.

Project Structure

Example: Now write down the following code in the App.js file. Here, App is our default component where we have written our code.

App.js




import React from 'react'
import 'rsuite/dist/styles/rsuite-default.css';
import { List } from 'rsuite';
  
export default function App() {
  
  const sampleData = ['Monday', 'Tuesday',
                      'Wednesday', 'Thursday', 
                      'Friday', 'Saturday', 'Sunday'];
  
  return (
    <div style={{
      display: 'block', width: 700, paddingLeft: 30
    }}>
      <h4>React Suite List Component</h4>
      <List>
        {sampleData.map((item, index) => (
          <List.Item index={index} key={index} >
            {item}
          </List.Item>
        ))}
      </List>
    </div>
  );
}


Step to Run Application: Run the application using the following command from the root directory of the project:

npm start

Output: Now open your browser and go to http://localhost:3000/, you will see the following output:

Reference: https://rsuitejs.com/components/list/

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6779 POSTS0 COMMENTS
Nicole Veronica
11927 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11995 POSTS0 COMMENTS
Shaida Kate Naidoo
6906 POSTS0 COMMENTS
Ted Musemwa
7163 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6846 POSTS0 COMMENTS