aboutsummaryrefslogtreecommitdiff
path: root/examples/macros/components/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/macros/components/index.tsx')
-rw-r--r--examples/macros/components/index.tsx3
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();