aboutsummaryrefslogtreecommitdiff
path: root/src/lib/layout.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/layout.ts')
-rw-r--r--src/lib/layout.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/layout.ts b/src/lib/layout.ts
new file mode 100644
index 0000000..1e38bfd
--- /dev/null
+++ b/src/lib/layout.ts
@@ -0,0 +1,15 @@
+import { h, Children, concatClassName } from 'lib/h'
+
+export function section(attrs: object, ...children: Children): Element {
+ return h('div',
+ concatClassName(attrs, 'g-Layout__Section'),
+ ...children
+ )
+}
+
+export function line(attrs: object, ...children: Children): Element {
+ return h('div',
+ concatClassName(attrs, 'g-Layout__Line'),
+ ...children
+ )
+}