mirror of
https://github.com/django-components/django-components.git
synced 2025-07-15 20:45:00 +00:00
8 lines
259 B
Python
8 lines
259 B
Python
from components.calendar.calendar import Calendar
|
|
from components.greeting import Greeting
|
|
from django.urls import path
|
|
|
|
urlpatterns = [
|
|
path("greeting/", Greeting.as_view(), name="greeting"),
|
|
path("calendar/", Calendar.as_view(), name="calendar"),
|
|
]
|