Reformat all project files to use the prettier config file.
This commit is contained in:
@@ -1,16 +1,12 @@
|
||||
import React from "react";
|
||||
import {Result} from "antd";
|
||||
import {useTranslation} from "react-i18next";
|
||||
import { Result } from "antd";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
export default function NotFound() {
|
||||
const {t} = useTranslation();
|
||||
return (
|
||||
<div>
|
||||
<Result
|
||||
status="404"
|
||||
title={t("general.messages.notfoundtitle")}
|
||||
subTitle={t("general.messages.notfoundsub")}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
const { t } = useTranslation();
|
||||
return (
|
||||
<div>
|
||||
<Result status="404" title={t("general.messages.notfoundtitle")} subTitle={t("general.messages.notfoundsub")} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user