This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BROSWER=none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export function CounterComponent() { | |
| // get the ID of root from index.html | |
| const root = document.getElementById("root") | |
| // set counter to 0 | |
| let counter = 0; | |
| // create fragment | |
| const fragment = document.createDocumentFragment() |