1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
mod app;
pub mod component;
mod proto;
mod shared;
mod utils;

pub mod prelude;

mod just_to_test {
    use crate::prelude::*;

    pub struct Counter {
        value: i32,
    }

    component! {
        Counter,
        button @click: { self.value += 1 } {
            for i in (0..10) {
                { i }
            }
        }
    }
}