diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/03-controlled-inputs/src/app.gleam | 2 | ||||
-rw-r--r-- | examples/04-custom-event-handlers/src/app.gleam | 2 | ||||
-rw-r--r-- | examples/05-http-requests/src/app.gleam | 2 | ||||
-rw-r--r-- | examples/06-custom-effects/src/app.gleam | 2 | ||||
-rw-r--r-- | examples/07-routing/src/app.gleam | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/examples/03-controlled-inputs/src/app.gleam b/examples/03-controlled-inputs/src/app.gleam index f620e6a..b4a29c2 100644 --- a/examples/03-controlled-inputs/src/app.gleam +++ b/examples/03-controlled-inputs/src/app.gleam @@ -28,7 +28,7 @@ type Model { Model(value: String, length: Int, max: Int) } -fn init(_) -> Model { +fn init(_flags) -> Model { Model(value: "", length: 0, max: 10) } diff --git a/examples/04-custom-event-handlers/src/app.gleam b/examples/04-custom-event-handlers/src/app.gleam index 011b09c..e5d7fe1 100644 --- a/examples/04-custom-event-handlers/src/app.gleam +++ b/examples/04-custom-event-handlers/src/app.gleam @@ -30,7 +30,7 @@ type Model { Model(value: String, length: Int, max: Int) } -fn init(_) -> Model { +fn init(_flags) -> Model { Model(value: "", length: 0, max: 10) } diff --git a/examples/05-http-requests/src/app.gleam b/examples/05-http-requests/src/app.gleam index 9442cf3..5e0df3e 100644 --- a/examples/05-http-requests/src/app.gleam +++ b/examples/05-http-requests/src/app.gleam @@ -38,7 +38,7 @@ type Quote { Quote(author: String, content: String) } -fn init(_) -> #(Model, Effect(Msg)) { +fn init(_flags) -> #(Model, Effect(Msg)) { #(Model(quote: None), effect.none()) } diff --git a/examples/06-custom-effects/src/app.gleam b/examples/06-custom-effects/src/app.gleam index e04484a..4771bfd 100644 --- a/examples/06-custom-effects/src/app.gleam +++ b/examples/06-custom-effects/src/app.gleam @@ -27,7 +27,7 @@ type Model { Model(message: Option(String)) } -fn init(_) -> #(Model, Effect(Msg)) { +fn init(_flags) -> #(Model, Effect(Msg)) { #(Model(message: None), read_localstorage("message")) } diff --git a/examples/07-routing/src/app.gleam b/examples/07-routing/src/app.gleam index e82f895..fbdc786 100644 --- a/examples/07-routing/src/app.gleam +++ b/examples/07-routing/src/app.gleam @@ -44,7 +44,7 @@ type Guest { Guest(slug: String, name: String) } -fn init(_) -> #(Model, Effect(Msg)) { +fn init(_flags) -> #(Model, Effect(Msg)) { #( Model( current_route: Home, |