Moving table out of example.

This commit is contained in:
2020-07-26 12:14:55 -07:00
parent f496ef035f
commit 2a0609052f
2 changed files with 0 additions and 5 deletions

View File

@@ -40,12 +40,9 @@ To start with we need to create a data structure that both represents a DOM tree
I see three parts: the name of the tag, the tag's properties, and its children.
```
|----------+-----------------------------|
| name | 'div', 'h1', 'input' |
| props | 'class', 'type', 'disabled' |
| children | <h1>, <input>, Hello |
```
```
tag name: 'div'