diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2024-01-27 02:24:50 +0000 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2024-01-27 02:24:50 +0000 |
commit | c34d1a0e9003d483752720466def696c30f705c8 (patch) | |
tree | b6e693c3b3d971a9d449daeb461b1a867177ad39 /examples/01-hello-world/src | |
parent | 235fcd2ae0229272ebb0927806d301c8b887c1ba (diff) | |
download | lustre-c34d1a0e9003d483752720466def696c30f705c8.tar.gz lustre-c34d1a0e9003d483752720466def696c30f705c8.zip |
:construction: Start replacing old test examples with structured examples.
Diffstat (limited to 'examples/01-hello-world/src')
-rw-r--r-- | examples/01-hello-world/src/app.gleam | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/examples/01-hello-world/src/app.gleam b/examples/01-hello-world/src/app.gleam new file mode 100644 index 0000000..dc42ad7 --- /dev/null +++ b/examples/01-hello-world/src/app.gleam @@ -0,0 +1,27 @@ +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 +// the `--include-styles` flag: +// +// $ gleam run -m lustre/try -- --include-styles +// +// 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")] + 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) +} |