Add Entry

This commit is contained in:
2022-01-13 17:09:14 +08:00
parent 8fd3d27a9e
commit 9374464186
3 changed files with 22 additions and 2 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { Component, ReactNode } from "react";
import { Component, ReactNode, StrictMode } from "react";
import { render } from "react-dom";
import { Group } from "@Model/Group";
import "./Laboratory.scss";
@@ -13,7 +13,7 @@ class Test extends Component {
}
render(
<Test></Test>,
<StrictMode><Test></Test></StrictMode>,
document.getElementById("root")
);