I am having below code to render multiple hero cards
const hcard = CardFactory.heroCard(
'Neeti Sharma',
'CEO, Moblize.it LLC',
null,
[
{
type: ActionTypes.MessageBack,
title: 'Call',
value: null,
text: 'UpdateCardAction'
},
{
type: ActionTypes.MessageBack,
title: 'Email',
value: null,
text: 'email'
}
]);
await context.sendActivity({ attachments: [hcard, hcard] });
This renders one card after another. how do i convert it to a carousel?