소스 검색

Feat: clean up naming

Jonathan Kelley 4 년 전
부모
커밋
2afbfea
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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.