aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--birdie_snapshots/can_render_static_html.accepted4
-rw-r--r--test/apps/static.gleam5
2 files changed, 5 insertions, 4 deletions
diff --git a/birdie_snapshots/can_render_static_html.accepted b/birdie_snapshots/can_render_static_html.accepted
index 5fe52b6..907c6a5 100644
--- a/birdie_snapshots/can_render_static_html.accepted
+++ b/birdie_snapshots/can_render_static_html.accepted
@@ -1,5 +1,5 @@
---
-version: 1.0.1
+version: 1.0.4
title: Can render static HTML
---
-<html><head><title>Hello, World!</title></head><body><h1>Hello, World!</h1><img src="https://source.unsplash.com/random"></body></html> \ No newline at end of file
+<html><head><title>Hello, World!</title></head><body><h1>Hello, World!</h1><input disabled><img src="https://source.unsplash.com/random"></body></html> \ No newline at end of file
diff --git a/test/apps/static.gleam b/test/apps/static.gleam
index d41964a..5c6ca05 100644
--- a/test/apps/static.gleam
+++ b/test/apps/static.gleam
@@ -1,8 +1,8 @@
// IMPORTS ---------------------------------------------------------------------
-import lustre/attribute.{src}
+import lustre/attribute.{disabled, src}
import lustre/element.{text}
-import lustre/element/html.{body, h1, head, html, img, title}
+import lustre/element/html.{body, h1, head, html, img, input, title}
// VIEW ------------------------------------------------------------------------
@@ -11,6 +11,7 @@ pub fn view() {
head([], [title([], "Hello, World!")]),
body([], [
h1([], [text("Hello, World!")]),
+ input([disabled(True)]),
img([src("https://source.unsplash.com/random")]),
]),
])