mirror of
https://github.com/django-components/django-components.git
synced 2025-07-19 22:35:01 +00:00

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Emil Stenström <emil@emilstenstrom.se>
11 lines
506 B
Python
11 lines
506 B
Python
from components.calendar.calendar import Calendar, CalendarRelative
|
|
from components.greeting import Greeting
|
|
from components.nested.calendar.calendar import CalendarNested
|
|
from django.urls import path
|
|
|
|
urlpatterns = [
|
|
path("greeting/", Greeting.as_view(), name="greeting"),
|
|
path("calendar/", Calendar.as_view(), name="calendar"),
|
|
path("calendar-relative/", CalendarRelative.as_view(), name="calendar-relative"),
|
|
path("calendar-nested/", CalendarNested.as_view(), name="calendar-nested"),
|
|
]
|