Comment on Show HN: Sauron – A web framework in Rust that adheres to the Elm architectureparentComments−mattigames7yNot convinced that's the case, with a bit of code splitting the view may end looking more like (pseudo-code): fn view(&self) -> Node<Msg> { div(self.attributes(), self.content()) } fn content(&self) -> Node<Msg> { input([ class("client"), r#type("button"), value("Click me!"), onclick(|_| {sauron::log("Button is clicked"); Msg::Click}) ],[],) }−ivancerasOP7yYou can also take a look at the window_tab_rows example. It will allow you to modularize into isolated subcomponents which you can embed into the main component.
Comments
Not convinced that's the case, with a bit of code splitting the view may end looking more like (pseudo-code):
You can also take a look at the window_tab_rows example. It will allow you to modularize into isolated subcomponents which you can embed into the main component.