Files
ticketsystem/frontend/src/main.rs
T
2026-06-17 16:35:26 +02:00

10 lines
302 B
Rust

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();
}