reflex/reflex/.templates/jinja/web/pages/base_page.js.jinja2
Nikhil Rao 96f68cb94d
Implement accordion component (#2262)
* Implement accordion component

* Fix literal annotation

* Use style prop instead of css

* Move accordion to primitives folder

* Add pyi file

* Fix pyright

* Add apply_theme method

* Fix apply_theme

* Use apply_theme method

* Fix lint
2023-12-08 21:20:30 -08:00

20 lines
358 B
Django/Jinja

{% import 'web/pages/utils.js.jinja2' as utils %}
/** @jsxImportSource @emotion/react */
{%- block imports_libs %}
{% for module in imports%}
{{- utils.get_import(module) }}
{% endfor %}
{% for dynamic_import in dynamic_imports %}
{{dynamic_import}}
{% endfor %}
{% endblock %}
{% block declaration %}
{% endblock %}
{% block export %}
{% endblock %}