waterui-internal 0.3.0

Internal implementation crate for WaterUI
1
2
3
4
5
6
7
use waterui_core::View;

/// Wraps the root view for an application, allowing custom entry pipelines to
/// compose around it in the future.
pub const fn entry<V: View>(content: V) -> V {
    content
}