euv-example 0.5.8

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::*;

/// Props for the `page_router` component.
///
/// Defines the strongly-typed interface for the route-based page resolver.
#[derive(Clone, Default)]
pub(crate) struct PageRouterProps {
    /// The reactive signal holding the current route path.
    pub(crate) route_signal: Signal<String>,
}