10 lines
141 B
Go
10 lines
141 B
Go
package templates
|
|
|
|
import "templ-tests/app/types"
|
|
|
|
type PageContext struct {
|
|
Title string
|
|
ActivePage string
|
|
User *types.User
|
|
}
|