aboutsummaryrefslogtreecommitdiff
path: root/test/examples/svg.gleam
diff options
context:
space:
mode:
authorHayleigh Thompson <me@hayleigh.dev>2023-07-20 23:22:09 +0100
committerHayleigh Thompson <me@hayleigh.dev>2023-07-20 23:22:09 +0100
commitde26bd9e3e725e505fd07b4d61d792672e7ce8e6 (patch)
tree3e20381f9c3a8e021eed4fdaac1611b63ac6e458 /test/examples/svg.gleam
parent92a42c79a2ef4c5049d77c3bbb8596040d0afdd3 (diff)
downloadlustre-de26bd9e3e725e505fd07b4d61d792672e7ce8e6.tar.gz
lustre-de26bd9e3e725e505fd07b4d61d792672e7ce8e6.zip
:recycle: Namespace the html and svg modules under the element module.
Diffstat (limited to 'test/examples/svg.gleam')
-rw-r--r--test/examples/svg.gleam4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/examples/svg.gleam b/test/examples/svg.gleam
index 1e0e6a2..c1cc5fb 100644
--- a/test/examples/svg.gleam
+++ b/test/examples/svg.gleam
@@ -4,8 +4,8 @@ import gleam/int
import lustre
import lustre/attribute.{attribute}
import lustre/element.{Element, text}
-import lustre/html.{button, div, p, svg}
-import lustre/svg.{path}
+import lustre/element/html.{button, div, p, svg}
+import lustre/element/svg.{path}
import lustre/event
// MAIN ------------------------------------------------------------------------