{% macro component(items=[], prefix) %}
{% for item in items %}

{{ item.title }}

{% if item.chips %} {% for chip in item.chips %} {{ chip }} {% endfor %} {% endif %}
{{ item.answers or '1' }}

answers

{% endfor %}
{% endmacro %}