diff options
Diffstat (limited to 'examples/03-controlled-inputs/src')
-rw-r--r-- | examples/03-controlled-inputs/src/app.gleam | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/examples/03-controlled-inputs/src/app.gleam b/examples/03-controlled-inputs/src/app.gleam index b4a29c2..d44e1ae 100644 --- a/examples/03-controlled-inputs/src/app.gleam +++ b/examples/03-controlled-inputs/src/app.gleam @@ -4,16 +4,8 @@ import lustre import lustre/attribute import lustre/element.{type Element} import lustre/event -// 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 `--use-example-styles` flag: -// -// $ gleam run -m lustre/dev start --use-example-styles -// -// In your own apps, make sure to add the `lustre/ui` dependency and include the -// stylesheet somewhere. import lustre/ui -import lustre/ui/aside +import lustre/ui/layout/aside // MAIN ------------------------------------------------------------------------ |