Skip to content

Instantly share code, notes, and snippets.

@arun12209
Created June 5, 2022 08:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arun12209/69965bc2f1a63b1949612eb79863aadc to your computer and use it in GitHub Desktop.
Save arun12209/69965bc2f1a63b1949612eb79863aadc to your computer and use it in GitHub Desktop.
<template>
<lightning-card title="wireGetRelatedListRecords">
<template if:true={records}>
<div class="slds-m-around_medium">
<template for:each={records} for:item="rec">
<p key={rec.fields.Id.value}>
{rec.fields.Name.value}
</p>
</template>
</div>
</template>
</lightning-card>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment