diff options
author | 2021-09-27 21:25:12 -0700 | |
---|---|---|
committer | 2021-09-27 21:25:12 -0700 | |
commit | 5dac4e610808e6c69436b70cf79886ba8faea55b (patch) | |
tree | a985d692ffe2fd2c7815a98cdef3dc6d24cf67a1 /examples | |
parent | e51155d8e6f1dac365cb0ba3373077e80460cc93 (diff) | |
download | bun-5dac4e610808e6c69436b70cf79886ba8faea55b.tar.gz bun-5dac4e610808e6c69436b70cf79886ba8faea55b.tar.zst bun-5dac4e610808e6c69436b70cf79886ba8faea55b.zip |
Cleanup
Diffstat (limited to 'examples')
-rw-r--r-- | examples/macros/components/index.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/macros/components/index.tsx b/examples/macros/components/index.tsx index 20e58b7b7..4dfc3c6c3 100644 --- a/examples/macros/components/index.tsx +++ b/examples/macros/components/index.tsx @@ -1,12 +1,15 @@ import * as ReactDOM from "react-dom"; import * as React from "react"; import { IPAddresses } from "./example"; +import { Covid19 } from "./covid19"; const Start = function () { const root = document.createElement("div"); document.body.appendChild(root); + // comment out to switch between examples ReactDOM.render(<IPAddresses />, root); + // ReactDOM.render(<Covid19 />, root); }; Start(); |