You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
742 B
Rust

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#[macro_use]
extern crate seed;
use seed::prelude::*;
// Model
#[derive(Clone)]
struct Model {
pub val: i32,
}
impl Default for Model {
fn default() -> Self {
Self {
val: 0,
}
}
}
// Update
#[derive(Clone)]
enum Msg {
Increment,
}
fn update(msg: Msg, model: Model) -> Update<Model> {
match msg {
Msg::Increment => Render(Model {val: model.val + 1})
}
}
// View
fn view(_state: seed::App<Msg, Model>, model: &Model) -> El<Msg> {
button![
simple_ev(Ev::Click, Msg::Increment),
format!("Hello, World × {}", model.val)
]
}
#[wasm_bindgen]
pub fn render() {
seed::App::build(Model::default(), update, view)
.finish()
.run();
}