diff options
Diffstat (limited to 'internal/examples/app/html/home.go')
-rw-r--r-- | internal/examples/app/html/home.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/examples/app/html/home.go b/internal/examples/app/html/home.go index d4e192c..a3d729b 100644 --- a/internal/examples/app/html/home.go +++ b/internal/examples/app/html/home.go @@ -13,8 +13,8 @@ func HomePage(items []string) Node { P(Raw(`Have a look at the <a href="https://github.com/maragudk/gomponents/tree/main/internal/examples/app">source code</a> to see how it’s structured.`)), - Ul(Group(Map(items, func(s string) Node { + Ul(Map(items, func(s string) Node { return Li(Text(s)) - }))), + })), ) } |