Refactor layout system and abstract data types to separate definitions and tags

This commit is contained in:
Keavon Chambers
2021-03-27 01:20:51 -07:00
parent 651669a07d
commit aacb5497cb
9 changed files with 515 additions and 345 deletions
+9
View File
@@ -0,0 +1,9 @@
use crate::layout_abstract_syntax::*;
pub struct WindowDom {}
impl WindowDom {
pub fn new(root_component: &FlatComponent) -> WindowDom {
Self {}
}
}