From d2bf53a4ade4bf283fdd1b40786fa913ae547b09 Mon Sep 17 00:00:00 2001 From: Hayleigh Thompson Date: Sun, 18 Feb 2024 11:08:06 +0000 Subject: :memo: Update references from 'lustre/try' to 'lustre dev'. --- examples/01-hello-world/src/app.gleam | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) (limited to 'examples/01-hello-world/src') diff --git a/examples/01-hello-world/src/app.gleam b/examples/01-hello-world/src/app.gleam index 5d2b50a..3e11f5b 100644 --- a/examples/01-hello-world/src/app.gleam +++ b/examples/01-hello-world/src/app.gleam @@ -2,26 +2,24 @@ import lustre import lustre/attribute import lustre/element import lustre/element/html -// These examples are written with lustre_ui in mind. They'll work regardless, -// but to see what lustre_ui can do make sure to run each of these examples with +// These examples are written with `lustre/ui` in mind. They'll work regardless, +// but to see what `lustre/ui` can do make sure to run each of these examples with // the `--include-styles` flag: // -// $ gleam run -m lustre/try -- --include-styles +// $ gleam run -m lustre dev --include-styles // -// In your own apps, make sure to add the `lustre_ui` dependency and include the +// In your own apps, make sure to add the `lustre/ui` dependency and include the // stylesheet somewhere. import lustre/ui pub fn main() { let styles = [#("width", "100vw"), #("height", "100vh"), #("padding", "1rem")] - let app = - lustre.element(ui.centre( - [attribute.style(styles)], - html.div([], [ - html.h1([], [element.text("Hello, world.")]), - html.h2([], [element.text("Welcome to Lustre.")]), - ]), - )) - let assert Ok(_) = lustre.start(app, "#app", Nil) + lustre.element(ui.centre( + [attribute.style(styles)], + html.div([], [ + html.h1([], [element.text("Hello, world.")]), + html.h2([], [element.text("Welcome to Lustre.")]), + ]), + )) } -- cgit v1.2.3