diff options
author | 2021-09-27 21:21:51 -0700 | |
---|---|---|
committer | 2021-09-27 21:21:51 -0700 | |
commit | 2bb7f71b9c88b680008564cdf56186360228c317 (patch) | |
tree | 2c876e18189c7291c142f5c093f60b151a5d9528 /examples/macros/components/index.tsx | |
parent | 2f8be4f13f6be8577afbb4c65db2faadf9459751 (diff) | |
download | bun-2bb7f71b9c88b680008564cdf56186360228c317.tar.gz bun-2bb7f71b9c88b680008564cdf56186360228c317.tar.zst bun-2bb7f71b9c88b680008564cdf56186360228c317.zip |
Fix up examplesbun-v0.0.26
Diffstat (limited to 'examples/macros/components/index.tsx')
-rw-r--r-- | examples/macros/components/index.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/macros/components/index.tsx b/examples/macros/components/index.tsx index 6c3e39be7..20e58b7b7 100644 --- a/examples/macros/components/index.tsx +++ b/examples/macros/components/index.tsx @@ -5,6 +5,7 @@ import { IPAddresses } from "./example"; const Start = function () { const root = document.createElement("div"); document.body.appendChild(root); + ReactDOM.render(<IPAddresses />, root); }; |