diff --git a/web/src/ResetModal.js b/web/src/ResetModal.js index c149753a..e134708a 100644 --- a/web/src/ResetModal.js +++ b/web/src/ResetModal.js @@ -17,7 +17,7 @@ import i18next from "i18next"; import React from "react"; import * as Setting from "./Setting" import * as UserBackend from "./backend/UserBackend" -import {CountDownInput} from "./component/CountDownInput"; +import {CountDownInput} from "./common/CountDownInput"; import {MailOutlined, PhoneOutlined} from "@ant-design/icons"; export const ResetModal = (props) => { diff --git a/web/src/auth/ForgetPage.js b/web/src/auth/ForgetPage.js index 562657b5..636ca8f2 100644 --- a/web/src/auth/ForgetPage.js +++ b/web/src/auth/ForgetPage.js @@ -19,7 +19,7 @@ import * as ApplicationBackend from "../backend/ApplicationBackend"; import * as Util from "./Util"; import * as Setting from "../Setting"; import i18next from "i18next"; -import {CountDownInput} from "../component/CountDownInput"; +import {CountDownInput} from "../common/CountDownInput"; import * as UserBackend from "../backend/UserBackend"; import {CheckCircleOutlined, KeyOutlined, LockOutlined, SolutionOutlined, UserOutlined} from "@ant-design/icons"; import CustomGithubCorner from "../CustomGithubCorner"; diff --git a/web/src/auth/LoginPage.js b/web/src/auth/LoginPage.js index fc32399f..d84fec4b 100644 --- a/web/src/auth/LoginPage.js +++ b/web/src/auth/LoginPage.js @@ -38,7 +38,7 @@ import AppleLoginButton from "./AppleLoginButton" import AzureADLoginButton from "./AzureADLoginButton"; import SlackLoginButton from "./SlackLoginButton"; import CustomGithubCorner from "../CustomGithubCorner"; -import {CountDownInput} from "../component/CountDownInput"; +import {CountDownInput} from "../common/CountDownInput"; class LoginPage extends React.Component { constructor(props) { diff --git a/web/src/auth/SignupPage.js b/web/src/auth/SignupPage.js index 7cec7414..abb98a0c 100644 --- a/web/src/auth/SignupPage.js +++ b/web/src/auth/SignupPage.js @@ -21,7 +21,7 @@ import i18next from "i18next"; import * as Util from "./Util"; import {authConfig} from "./Auth"; import * as ApplicationBackend from "../backend/ApplicationBackend"; -import {CountDownInput} from "../component/CountDownInput"; +import {CountDownInput} from "../common/CountDownInput"; import SelectRegionBox from "../SelectRegionBox"; import CustomGithubCorner from "../CustomGithubCorner"; diff --git a/web/src/component/CountDownInput.js b/web/src/common/CountDownInput.js similarity index 100% rename from web/src/component/CountDownInput.js rename to web/src/common/CountDownInput.js