1use dioxus_hooks::use_context;
2use dioxus_signals::Signal;
3use freya_core::platform_state::PlatformInformation;
45/// Get access to information from the platform.
6pub fn use_platform_information() -> Signal<PlatformInformation> {
7 use_context()
8}