aboutsummaryrefslogtreecommitdiff
path: root/examples/macros/components/index.tsx
blob: 6c3e39be70fa37287c0ce01f39565ab6ff417d90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import * as ReactDOM from "react-dom";
import * as React from "react";
import { IPAddresses } from "./example";

const Start = function () {
  const root = document.createElement("div");
  document.body.appendChild(root);
  ReactDOM.render(<IPAddresses />, root);
};

Start();