mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-04-28 18:12:27 +00:00
12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
import * as React from "react";
|
|
|
|
import * as ReactDOM from "react-dom";
|
|
|
|
import App from "./App";
|
|
|
|
it("renders without crashing", () => {
|
|
const div = document.createElement("div");
|
|
ReactDOM.render(<App />, div);
|
|
ReactDOM.unmountComponentAtNode(div);
|
|
});
|