Files
projectreshoot/internal/view/page/account.templ

11 lines
232 B
Plaintext

package page
import "projectreshoot/internal/view/layout"
import "projectreshoot/internal/view/component/account"
templ Account(subpage string) {
@layout.Global("Account - " + subpage) {
@account.AccountContainer(subpage)
}
}