django-components/tests/components/urls.py
2024-01-27 23:10:03 +01:00

9 lines
309 B
Python

from django.urls import path
from tests.components.multi_file.multi_file import MultFileComponent
from tests.components.single_file import SingleFileComponent
urlpatterns = [
path("single/", SingleFileComponent.as_view(), name="single"),
path("multi/", MultFileComponent.as_view(), name="multi"),
]