diff options
Diffstat (limited to 'FrontEnd/src/views/center')
-rw-r--r-- | FrontEnd/src/views/center/CenterBoards.tsx | 2 | ||||
-rw-r--r-- | FrontEnd/src/views/center/TimelineBoard.tsx | 2 | ||||
-rw-r--r-- | FrontEnd/src/views/center/TimelineCreateDialog.tsx | 2 | ||||
-rw-r--r-- | FrontEnd/src/views/center/index.tsx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/FrontEnd/src/views/center/CenterBoards.tsx b/FrontEnd/src/views/center/CenterBoards.tsx index e95f4cb8..a8be2c29 100644 --- a/FrontEnd/src/views/center/CenterBoards.tsx +++ b/FrontEnd/src/views/center/CenterBoards.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import * as React from "react"; import { useTranslation } from "react-i18next"; import { highlightTimelineUsername } from "@/common"; diff --git a/FrontEnd/src/views/center/TimelineBoard.tsx b/FrontEnd/src/views/center/TimelineBoard.tsx index 68a887a4..b3ccdf8c 100644 --- a/FrontEnd/src/views/center/TimelineBoard.tsx +++ b/FrontEnd/src/views/center/TimelineBoard.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import * as React from "react"; import classnames from "classnames"; import { Link } from "react-router-dom"; diff --git a/FrontEnd/src/views/center/TimelineCreateDialog.tsx b/FrontEnd/src/views/center/TimelineCreateDialog.tsx index 2afc7221..b0e2f59e 100644 --- a/FrontEnd/src/views/center/TimelineCreateDialog.tsx +++ b/FrontEnd/src/views/center/TimelineCreateDialog.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import * as React from "react"; import { useNavigate } from "react-router-dom"; import { validateTimelineName } from "@/services/timeline"; diff --git a/FrontEnd/src/views/center/index.tsx b/FrontEnd/src/views/center/index.tsx index 283925b9..77af2c20 100644 --- a/FrontEnd/src/views/center/index.tsx +++ b/FrontEnd/src/views/center/index.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import * as React from "react"; import { useNavigate } from "react-router-dom"; import { useUserLoggedIn } from "@/services/user"; |