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"), ]