11 lines
214 B
Plaintext
11 lines
214 B
Plaintext
package page
|
|
|
|
import "projectreshoot/view/layout"
|
|
import "projectreshoot/view/component/account"
|
|
|
|
templ Account(subpage string) {
|
|
@layout.Global("Account - " + subpage) {
|
|
@account.AccountContainer(subpage)
|
|
}
|
|
}
|