mirror of
https://github.com/django-components/django-components.git
synced 2025-07-10 02:35:00 +00:00
9 lines
309 B
Python
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"),
|
|
]
|