Rename components to ui

This commit is contained in:
Akira Tempaku 2024-01-30 10:16:17 +09:00
parent 72ef5ae639
commit 48c1dbd097
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
(:use #:cl)
(:import-from #:jingle)
(:import-from #:markup)
(:import-from #:hp/components/layout
(:import-from #:hp/ui/layout
#:layout)
(:import-from #:hp/utils
#:render-html

View file

@ -1,8 +1,8 @@
(defpackage #:hp/components/layout
(defpackage #:hp/ui/layout
(:use #:cl)
(:import-from #:markup)
(:export #:layout))
(in-package #:hp/components/layout)
(in-package #:hp/ui/layout)
(markup:enable-reader)