mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-29 15:40:19 +00:00
Feat: clean up naming
This commit is contained in:
parent
c1b990b27c
commit
2afbfea324
2 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@ description = "Core functionality for Dioxus - a concurrent renderer-agnostic Vi
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
generational-arena = "0.2.8"
|
generational-arena = "0.2.8"
|
||||||
html-macro = { path = "../html-macro" }
|
dioxus-html-macro = { path = "../html-macro" }
|
||||||
once_cell = "1.5.2"
|
once_cell = "1.5.2"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ pub mod prelude {
|
||||||
pub type VirtualNode = VNode;
|
pub type VirtualNode = VNode;
|
||||||
|
|
||||||
// Re-export from the macro crate
|
// Re-export from the macro crate
|
||||||
pub use html_macro::html;
|
pub use dioxus_html_macro::html;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The Dioxus Virtual Dom integrates an event system and virtual nodes to create reactive user interfaces.
|
/// The Dioxus Virtual Dom integrates an event system and virtual nodes to create reactive user interfaces.
|
||||||
|
|
Loading…
Reference in a new issue