about summary refs log tree commit diff stats
path: root/el/content.go
diff options
context:
space:
mode:
Diffstat (limited to 'el/content.go')
-rw-r--r--el/content.go33
1 files changed, 0 insertions, 33 deletions
diff --git a/el/content.go b/el/content.go
deleted file mode 100644
index a4bcd61..0000000
--- a/el/content.go
+++ /dev/null
@@ -1,33 +0,0 @@
-package el
-
-import (
-	g "github.com/maragudk/gomponents"
-)
-
-func Div(children ...g.Node) g.NodeFunc {
-	return g.El("div", children...)
-}
-
-func Ol(children ...g.Node) g.NodeFunc {
-	return g.El("ol", children...)
-}
-
-func Ul(children ...g.Node) g.NodeFunc {
-	return g.El("ul", children...)
-}
-
-func Li(children ...g.Node) g.NodeFunc {
-	return g.El("li", children...)
-}
-
-func P(children ...g.Node) g.NodeFunc {
-	return g.El("p", children...)
-}
-
-func Br(children ...g.Node) g.NodeFunc {
-	return g.El("br", children...)
-}
-
-func Hr(children ...g.Node) g.NodeFunc {
-	return g.El("hr", children...)
-}