This commit is contained in:
2026-06-17 16:35:26 +02:00
parent a1d95f1ba2
commit c11309a3a5
5 changed files with 64 additions and 2 deletions
+4
View File
@@ -1,5 +1,9 @@
use frontend::App;
/// Main entry point for the Yew frontend application.
///
/// Initializes the Yew framework and renders the root [`App`] component into the DOM.
/// This function is typically called automatically by the WebAssembly runtime.
fn main() {
yew::Renderer::<App>::new().render();
}