test
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user