Untitled
unknown
plain_text
3 years ago
843 B
5
Indexable
<template>
<div class="slds-var-m-around_medium">
<div class="parent">
<div>
<span>Billing Address: </span> {accountName}
<span>
<button class="button" onclick={showDetails}><i class="arrow down"></i></button>
</span>
</div>
<div if:true={addressVal} class="parent">
<table class="table">
<tbody>
<tr>
<td class="column1">
<input class="radioBtn" type="radio" id="html">
</td>
<td class="column2">
Street: 2077 Myra Street<br>
City: Johnston<br>
State/province/area: Rhode Island<br>
Phone number: 401-538-4117<br>
Zip code: 02919<br>
Country calling code: +1<br>
Country: United States <br>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</template>Editor is loading...