1 2 3 4 5 6 7 8 9 10
//! UI primitives re-exported from the widgets module. #![allow(non_snake_case)] // Re-export everything from widgets pub use crate::widgets::*; #[cfg(test)] #[path = "tests/primitives_tests.rs"] mod tests;