aboutsummaryrefslogtreecommitdiff
path: root/examples/macros/components/index.tsx
blob: 20e58b7b7a27c6c3511799e7f16c781887a2edea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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();