aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/user/Login.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-08-24 23:51:20 +0800
committercrupest <crupest@outlook.com>2020-08-24 23:51:20 +0800
commit42820d6152131b5e2931bba82ab9e2976e2181f3 (patch)
tree1be3bd365ff167225092d772e6385cf4d9640e60 /Timeline/ClientApp/src/app/user/Login.tsx
parentde1d582bf2ed7062fd400459f30d463d47ef9982 (diff)
downloadtimeline-42820d6152131b5e2931bba82ab9e2976e2181f3.tar.gz
timeline-42820d6152131b5e2931bba82ab9e2976e2181f3.tar.bz2
timeline-42820d6152131b5e2931bba82ab9e2976e2181f3.zip
...
Diffstat (limited to 'Timeline/ClientApp/src/app/user/Login.tsx')
-rw-r--r--Timeline/ClientApp/src/app/user/Login.tsx7
1 files changed, 3 insertions, 4 deletions
diff --git a/Timeline/ClientApp/src/app/user/Login.tsx b/Timeline/ClientApp/src/app/user/Login.tsx
index 4f9cd05d..db6c43c4 100644
--- a/Timeline/ClientApp/src/app/user/Login.tsx
+++ b/Timeline/ClientApp/src/app/user/Login.tsx
@@ -1,10 +1,6 @@
import React, { Fragment, useState, useEffect } from "react";
import { useHistory } from "react-router";
import { useTranslation } from "react-i18next";
-
-import AppBar from "../common/AppBar";
-
-import { useUser, userService } from "../data/user";
import {
Label,
FormGroup,
@@ -15,6 +11,9 @@ import {
Button,
} from "reactstrap";
+import AppBar from "../common/AppBar";
+import { useUser, userService } from "../data/user";
+
const Login: React.FC = (_) => {
const { t } = useTranslation();
const history = useHistory();