fix extraneous closing tag in example HTML (#97)

Prettier caught the extra `</div>`. Technically, `<body>` doesn't need to be closed, but it helps keep indentation consistent.
This commit is contained in:
Billie Hilton
2024-04-15 04:33:53 -04:00
committed by GitHub
parent 52020bb370
commit 74c4e389b8

View File

@@ -154,8 +154,8 @@ Start by defining the app's layout in `index.html`:
<input type="submit" value="Send" />
</form>
</div>
</div>
</main>
</body>
</html>
```