Feat: clean up naming

This commit is contained in:
Jonathan Kelley 2021-01-19 09:00:23 -05:00
parent c1b990b27c
commit 2afbfea324
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ description = "Core functionality for Dioxus - a concurrent renderer-agnostic Vi
[dependencies]
generational-arena = "0.2.8"
html-macro = { path = "../html-macro" }
dioxus-html-macro = { path = "../html-macro" }
once_cell = "1.5.2"

View file

@ -18,7 +18,7 @@ pub mod prelude {
pub type VirtualNode = VNode;
// 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.