Update hsx to v0.4.0

This commit is contained in:
Akira Tempaku 2024-12-12 13:21:19 +09:00
commit 2e325fbc06
7 changed files with 27 additions and 24 deletions
src/routes

View file

@ -4,7 +4,7 @@
(:export #:handle-get))
(in-package #:hp/routes/index)
(defcomp page ()
(defcomp ~page ()
(hsx
(section
; first view
@ -18,4 +18,4 @@
(defun handle-get (params)
(declare (ignore params))
(page))
(~page))