Skip to content

Instantly share code, notes, and snippets.

@mattrayner
Created May 15, 2018 15:26
Show Gist options
  • Save mattrayner/c47f46020731ddb9b06c6b98bd33ecea to your computer and use it in GitHub Desktop.
Save mattrayner/c47f46020731ddb9b06c6b98bd33ecea to your computer and use it in GitHub Desktop.
List Component JSON
<{data.kind} class="list--{data.display}">
{#items}
<li>
{>"components__{name}" name=name data=data/}
</li>
{/items}
</ol>
{
"name": "list",
"data": {
"type": "ol", // Allows both ol and ul
"display": "block", // Allows block, pipe, etc.
"items": [
{
"name": "card",
"data": { "foo": "bar" }
},
{
"name": "card",
"data": { "foo": "baz" }
},
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment