mirror of
https://github.com/django-components/django-components.git
synced 2025-07-08 18:05:00 +00:00

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
8 lines
253 B
Python
8 lines
253 B
Python
from django_components import Component, register
|
|
|
|
|
|
@register("todo")
|
|
class Todo(Component):
|
|
# Templates inside `[your apps]/components` dir and `[project root]/components` dir
|
|
# will be automatically found.
|
|
template_file = "todo/todo.html"
|