10 lines
302 B
Rust
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();
|
|
}
|