component! { use enterprise::event::ClickEvent; use enterprise::components::Button; component Counter { constructor() { count: u32 = 0u32, } view { } fn handleClick(&mut self, _: ClickEvent) { self.count += 1; } } component Other { } }