1
0
Fork 0

Adding Waralee

This commit is contained in:
WV Admin 2019-08-21 08:55:57 -07:00
parent d56ecc76af
commit 007df06235
23 changed files with 1434 additions and 0 deletions

View file

@ -0,0 +1,9 @@
import React from "react";
import ReactDOM from "react-dom";
import App from "./App";
it("renders without crashing", () => {
const div = document.createElement("div");
ReactDOM.render(<App />, div);
ReactDOM.unmountComponentAtNode(div);
});