Skip to main content

<OrganizationList />

The OrganizationList component renders a list of organizations that the current user belongs to.

Usage

Basic Usage

src/OrganizationsPage.jsx
import { OrganizationList } from '@asgardeo/react'

function OrganizationsPage() {
return (
<div>
<h1>My Organizations</h1>
<OrganizationList />
</div>
)
}

export default OrganizationsPage

Custom Rendering

Customize how each organization is rendered:

src/OrganizationsPage.jsx
import { OrganizationList } from '@asgardeo/react'

function OrganizationsPage() {
return (
<OrganizationList>
{(org) => (
<div key={org.id}>
<h3>{org.name}</h3>
<p>{org.role}</p>
</div>
)}
</OrganizationList>
)
}

export default OrganizationsPage

Props

PropTypeRequiredDescription
childrenFunction | ReactNodeCustom render function or default list display
© 2026 Thunder. All rights reserved.
Terms & ConditionsPrivacy Policy