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
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: &mut Model, _: &mut Orders<Msg>) {
match msg {
Msg::Increment => model.val += 1,
// View
fn view(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();