Quellcode durchsuchen

Feat: clean up naming

Jonathan Kelley vor 4 Jahren
Ursprung
Commit
2afbfea
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 1 1
      packages/core/Cargo.toml
  2. 1 1
      packages/core/src/lib.rs

+ 1 - 1
packages/core/Cargo.toml

@@ -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"
 
 

+ 1 - 1
packages/core/src/lib.rs

@@ -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.