Guest User

Untitled

a guest
Dec 11th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import React from "react";
  2. import ReactDOM from "react-dom";
  3.  
  4. import { App } from "./components/App";
  5.  
  6. const root = document.createElement("root");
  7. document.body.appendChild(root);
  8.  
  9. ReactDOM.render(<App />, root);
Add Comment
Please, Sign In to add comment