feat: add feature flag for liveview in lib

This commit is contained in:
Jonathan Kelley 2022-03-15 02:15:28 -04:00
parent 7e9d7c3ef0
commit 014eb974f7

View file

@ -14,6 +14,9 @@ pub use dioxus_ssr as ssr;
#[cfg(feature = "web")]
pub use dioxus_web as web;
#[cfg(feature = "liveview")]
pub use dioxus_liveview as liveview;
#[cfg(feature = "desktop")]
pub use dioxus_desktop as desktop;