Have been talking about the best way to get data out of the yaml to then map in a component like the below
<ul>
{listItems.map(item => (
<li>
{item}
</li>
))}
</ul> listItems:
one: list item one
two: list item two
three: list item threeconst listItems = Object.values(getCopy('listItems'))listItems:
one: list item one
two: list item two
three: list item threeconst listItems = [
getCopy('listItems.one'),
getCopy('listItems.two'),
getCopy('listItems.three')
] listItems: list item one, list item two, list item threeconst listItems = getCopy('listItems').split(',')