mirror of
https://github.com/django-components/django-components.git
synced 2025-10-04 03:04:34 +00:00
9 lines
251 B
Python
9 lines
251 B
Python
from django.urls import path
|
|
|
|
from examples.pages.form import FormPage
|
|
from examples.pages.tabs import TabsPage
|
|
|
|
urlpatterns = [
|
|
path("examples/tabs", TabsPage.as_view(), name="tabs"),
|
|
path("examples/form", FormPage.as_view(), name="form"),
|
|
]
|