diff options
author | Joris | 2020-07-26 18:16:59 +0200 |
---|---|---|
committer | Joris | 2020-07-26 18:16:59 +0200 |
commit | 4ee0dfae75fda3a8b6347d55c728b50ce5c210d9 (patch) | |
tree | 5f73adaf57354e0070acaa9a6b60dc49c0c48526 /src/Main.ml | |
parent | 447f43995ae8d83c82d98d9d8968e90d6c4518e7 (diff) |
Allow to customize icons
Diffstat (limited to 'src/Main.ml')
-rw-r--r-- | src/Main.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Main.ml b/src/Main.ml index bae9ee1..b95d01f 100644 --- a/src/Main.ml +++ b/src/Main.ml @@ -1,3 +1,3 @@ let () = - let main = Document.querySelectorUnsafe "body" in - Element.appendChild main (Map.render ()) + let body = Document.querySelectorUnsafe "body" in + Element.appendChild body (Map.render ()) |