from django.http import HttpRequest from django_components import Component, types class TabsPage(Component): template: types.django_html = """
{% lorem %}
{% lorem %}
{% endcomponent %} {% component "Tab" header="I am a gorilla!" %}{% lorem %}
I wonder if anyone got the Monty Python reference. 🤔
{% endcomponent %} {% endcomponent %} """ class View: def get(self, request: HttpRequest): return TabsPage.render_to_response(request=request)