aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/about
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-07-11 01:01:48 +0800
committercrupest <crupest@outlook.com>2023-07-11 01:01:48 +0800
commitd46b1aed549938c9f5e3e658b4098e71b5e2acf7 (patch)
tree0deae7f40692345c8e4b1473cdddbd13e0e5586d /FrontEnd/src/views/about
parentd9b83e4e8215168dda03b04168d7e30ce5fe779f (diff)
downloadtimeline-d46b1aed549938c9f5e3e658b4098e71b5e2acf7.tar.gz
timeline-d46b1aed549938c9f5e3e658b4098e71b5e2acf7.tar.bz2
timeline-d46b1aed549938c9f5e3e658b4098e71b5e2acf7.zip
Lint error, get away!
Diffstat (limited to 'FrontEnd/src/views/about')
-rw-r--r--FrontEnd/src/views/about/index.tsx7
1 files changed, 2 insertions, 5 deletions
diff --git a/FrontEnd/src/views/about/index.tsx b/FrontEnd/src/views/about/index.tsx
index 513b5003..093da894 100644
--- a/FrontEnd/src/views/about/index.tsx
+++ b/FrontEnd/src/views/about/index.tsx
@@ -1,4 +1,3 @@
-import * as React from "react";
import { useTranslation, Trans } from "react-i18next";
import authorAvatarUrl from "./author-avatar.png";
@@ -57,7 +56,7 @@ const backendCredits: {
},
];
-const AboutPage: React.FC = () => {
+export default function AboutPage() {
const { t } = useTranslation();
return (
@@ -141,6 +140,4 @@ const AboutPage: React.FC = () => {
</Card>
</div>
);
-};
-
-export default AboutPage;
+}