From 04640fcce01becec93d63beb3ddb034842e51c15 Mon Sep 17 00:00:00 2001 From: Markus Wüstenberg Date: Tue, 24 Sep 2024 10:33:54 +0200 Subject: Use go workspace in example app (#211) --- internal/examples/app/html/home.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/examples/app/html') 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 source code 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)) - }))), + })), ) } -- cgit 1.4.1