mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-02-09 13:08:14 -05: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);
|
|
});
|