Render components as views (#366) (thanks @dylanjcastillo)

This commit is contained in:
Dylan Castillo 2024-01-24 22:36:57 +01:00 committed by GitHub
parent b29e7fba80
commit 91b4accfeb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 347 additions and 15 deletions

View file

@ -0,0 +1,6 @@
from django.urls import path
from greeting import Greeting
urlpatterns = [
path("greeting/", Greeting.as_view(), name="greeting"),
]