diff options
author | Alan Pearce | 2025-03-19 12:20:24 +0100 |
---|---|---|
committer | Alan Pearce | 2025-03-19 12:20:24 +0100 |
commit | 3a9a1fd26540ddd0299771a729740cdd88239dde (patch) | |
tree | 6a65ad391fa2ff3d52132643502739e9645f56a7 /html/attributes.go | |
parent | 5eae1eef0f0a090ae569a23c0c52db356a109cfc (diff) | |
download | gomponents-3a9a1fd26540ddd0299771a729740cdd88239dde.tar.lz gomponents-3a9a1fd26540ddd0299771a729740cdd88239dde.tar.zst gomponents-3a9a1fd26540ddd0299771a729740cdd88239dde.zip |
Rename and document fork v1.2.0
Diffstat (limited to 'html/attributes.go')
-rw-r--r-- | html/attributes.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/attributes.go b/html/attributes.go index e9a0b6d..1a62e8a 100644 --- a/html/attributes.go +++ b/html/attributes.go @@ -1,7 +1,7 @@ package html import ( - g "maragu.dev/gomponents" + g "go.alanpearce.eu/gomponents" ) func Async() g.Node { @@ -138,7 +138,7 @@ func DataAttr(name, v string) g.Node { } func SlotAttr(v string) g.Node { - return g.Attr("slot", v) + return g.Attr("slot", v) } func For(v string) g.Node { |