Conditional rendering based on group membership

I would like to conditionally render a table based on if a user is a member of a specific Salesforce public group.   Any suggestions?

We are doing this!

Create a model set up like this:
Salesforce object: GroupMember
Conditions:
    UserOrGroupId is the running user ID
    Group.DeveloperName is your group’s name
Record Limit = 1
Load on page load

Then conditionally render your table based on this model having data rows.



Chandra

Thank you.  That works perfectly.

Jeff