🚚 Simplifica Child[Component] y Typed[Component]

This commit is contained in:
Manuel Cillero 2025-01-05 09:32:49 +01:00
parent d35f2c7756
commit 7ef45f1157
12 changed files with 57 additions and 59 deletions

View file

@ -73,7 +73,7 @@ impl Grid {
}
pub fn with_item(mut self, item: grid::Item) -> Self {
self.items.add(ChildComponent::with(item));
self.items.add(Child::with(item));
self
}