CollapseExpand example:

```js
const breadcrumbJSON = {
    '?xml': {
        '@version': '1.0',
        '@encoding': 'UTF-8'
    },
    'Breadcrumb': {
        'BreadcrumbContainer': [
            {
                'caption': 'About JetPrivilege',
                'path': '',
                'isActive': false
            },
            {
                'caption': 'About the company',
                'path': '',
                'isActive': false
            },
            {
                'caption': 'About us',
                'path': 'http://uat.jetprivilege.com/sites/SIT/IN/EN/About-Us-Revamp.page',
                'isActive': true
            }
        ],
        'DCRPath': '/templatedata/jppl_livesite/breadcrumb/data/about-us.xml'
    }
};

<Breadcrumb currentPath={breadcrumbJSON.Breadcrumb.BreadcrumbContainer} />

```
