mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-26 22:20:19 +00:00
re export renderers in dioxus
This commit is contained in:
parent
34e4917dbf
commit
b3cf9374f8
2 changed files with 15 additions and 14 deletions
|
@ -73,20 +73,6 @@ impl<
|
|||
}
|
||||
}
|
||||
|
||||
// #[cfg(feature = "router")]
|
||||
// impl<R: Routable> LaunchBuilder<crate::router::FullstackRouterConfig<R>>
|
||||
// where
|
||||
// <R as std::str::FromStr>::Err: std::fmt::Display,
|
||||
// R: Clone + serde::Serialize + serde::de::DeserializeOwned + Send + Sync + 'static,
|
||||
// {
|
||||
// /// Create a new launch builder for the given router.
|
||||
// pub fn router() -> Self {
|
||||
// let component = crate::router::RouteWithCfg::<R>;
|
||||
// let props = crate::router::FullstackRouterConfig::default();
|
||||
// Self::new_with_props(component, props)
|
||||
// }
|
||||
// }
|
||||
|
||||
#[cfg(feature = "desktop")]
|
||||
type CurrentPlatform = dioxus_desktop::DesktopPlatform;
|
||||
#[cfg(feature = "web")]
|
||||
|
|
|
@ -57,3 +57,18 @@ pub mod prelude {
|
|||
|
||||
pub use dioxus_core;
|
||||
}
|
||||
|
||||
#[cfg(feature = "web")]
|
||||
pub use dioxus_web as web;
|
||||
|
||||
#[cfg(feature = "router")]
|
||||
pub use dioxus_router as router;
|
||||
|
||||
#[cfg(feature = "fullstack")]
|
||||
pub use dioxus_fullstack as fullstack;
|
||||
|
||||
#[cfg(feature = "desktop")]
|
||||
pub use dioxus_desktop as desktop;
|
||||
|
||||
#[cfg(feature = "tui")]
|
||||
pub use dioxus_tui as tui;
|
||||
|
|
Loading…
Reference in a new issue