# Nestable


Nestables in Pages are powered by jQuery Nestables which is a Drag & drop hierarchical list with mouse and touch compatibility Follow these steps to initialize nestables in your page


# Importing

import Nestable from "react-nestable";

# How to use

<div className="dd" id="basic_example">
    <Nestable
        className={"nestable-one"}
        items={itemsOne}
        renderItem={renderItem}
        renderCollapseIcon={({ isCollapsed }) => (
            <CollapseIcon isCollapsed={isCollapsed} />
        )}
    />
</div>