windjammer-ui 0.3.6

Cross-platform UI framework for Windjammer (Web, Desktop, Mobile)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Web platform implementation (WASM backend)

// Re-export existing web functionality
// (This is a placeholder for organizing platform-specific code)

#[cfg(target_arch = "wasm32")]
pub use crate::app_reactive;

#[cfg(target_arch = "wasm32")]
pub use crate::renderer;

#[cfg(test)]
mod tests {
    #[test]
    fn test_web_platform() {
        // Platform tests will go here
    }
}