bin/main.rs
1use frontend::App;
2
3/// Main entry point for the Yew frontend application.
4///
5/// Initializes the Yew framework and renders the root [`App`] component into the DOM.
6/// This function is typically called automatically by the WebAssembly runtime.
7fn main() {
8 yew::Renderer::<App>::new().render();
9}