diff options
author | Joris | 2020-08-08 12:49:03 +0200 |
---|---|---|
committer | Joris | 2020-08-08 12:49:03 +0200 |
commit | 081e6aae57719c15bdbc5e973ca7ddba9506a4bb (patch) | |
tree | a8de15bb4165639cf283bde7b7e63eb330e83d88 /src/View/Layout.ml | |
parent | 4ee0dfae75fda3a8b6347d55c728b50ce5c210d9 (diff) |
Show context menu to add, modify and delete markers
Diffstat (limited to 'src/View/Layout.ml')
-rw-r--r-- | src/View/Layout.ml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/View/Layout.ml b/src/View/Layout.ml index 98218ad..b217f0b 100644 --- a/src/View/Layout.ml +++ b/src/View/Layout.ml @@ -2,3 +2,8 @@ let section attrs content = H.div (Js.Array.concat [| HA.class_ "g-Layout__Section" |] attrs) content + +let line attrs content = + H.div + (Js.Array.concat [| HA.class_ "g-Layout__Line" |] attrs) + content |