This commit is contained in:
2021-07-07 16:26:37 +08:00
parent d7f9f7068e
commit e6fd3f33e5
16 changed files with 926 additions and 227 deletions
+18
View File
@@ -0,0 +1,18 @@
import React from "react";
import { useTranslations } from "next-intl";
import { KEYS } from "../../lib/keys";
const IndexPage: React.FC = () => {
let t = useTranslations();
return (
<div>
{
t(KEYS.UI$tabs$quota, { p: 9 })
}
</div>
);
};
export default IndexPage;