diff options
author | 2021-10-03 23:53:57 -0700 | |
---|---|---|
committer | 2021-10-03 23:53:57 -0700 | |
commit | cb6a1b7225055575c526ac05bcf45d8bad5ce978 (patch) | |
tree | 0530ce6c372bcd2bbc7996bb130119235735880b | |
parent | 38c73788e1a6f8ed0aa845ebfa08e16247774927 (diff) | |
download | bun-cb6a1b7225055575c526ac05bcf45d8bad5ce978.tar.gz bun-cb6a1b7225055575c526ac05bcf45d8bad5ce978.tar.zst bun-cb6a1b7225055575c526ac05bcf45d8bad5ce978.zip |
Use covid19 example
-rw-r--r-- | examples/macros/components/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/macros/components/index.tsx b/examples/macros/components/index.tsx index 4dfc3c6c3..f5d0ffe0f 100644 --- a/examples/macros/components/index.tsx +++ b/examples/macros/components/index.tsx @@ -8,8 +8,8 @@ const Start = function () { document.body.appendChild(root); // comment out to switch between examples - ReactDOM.render(<IPAddresses />, root); - // ReactDOM.render(<Covid19 />, root); + // ReactDOM.render(<IPAddresses />, root); + ReactDOM.render(<Covid19 />, root); }; Start(); |