aboutsummaryrefslogtreecommitdiff
path: root/src/View/Layout.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/View/Layout.ml')
-rw-r--r--src/View/Layout.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/View/Layout.ml b/src/View/Layout.ml
index b217f0b..db1e234 100644
--- a/src/View/Layout.ml
+++ b/src/View/Layout.ml
@@ -1,9 +1,9 @@
let section attrs content =
H.div
- (Js.Array.concat [| HA.class_ "g-Layout__Section" |] attrs)
+ (HA.concat attrs [| HA.class_ "g-Layout__Section" |])
content
let line attrs content =
H.div
- (Js.Array.concat [| HA.class_ "g-Layout__Line" |] attrs)
+ (HA.concat attrs [| HA.class_ "g-Layout__Line" |])
content