Răsfoiți Sursa

fix VComponent::new

Evan Almloff 1 an în urmă
părinte
comite
6630a81b0b
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      packages/core/src/nodes.rs

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

@@ -382,7 +382,7 @@ impl VComponent {
     /// fn(Scope<Props>) -> Element;
     /// async fn(Scope<Props<'_>>) -> Element;
     /// ```
-    pub fn new<P>(&self, component: fn(P) -> Element, props: P, fn_name: &'static str) -> Self
+    pub fn new<P>(component: fn(P) -> Element, props: P, fn_name: &'static str) -> Self
     where
         // The properties must be valid until the next bump frame
         P: Properties,