Compiling checkpoint

This commit is contained in:
Nathan Sobo 2023-08-13 22:39:06 -06:00
parent 7662210776
commit 85f35497b6
3 changed files with 77 additions and 19 deletions

View file

@ -43,3 +43,12 @@ impl<V: 'static> Element<V> for Frame<V> {
Ok(())
}
}
impl<V> Clone for Frame<V> {
fn clone(&self) -> Self {
Self {
style: self.style.clone(),
children: self.children.clone(),
}
}
}