import React from "react"; import { useTranslations } from "next-intl"; import { KEYS } from "../../lib/keys"; const IndexPage: React.FC = () => { let t = useTranslations(); return (
{ t(KEYS.UI$tabs$quota, { p: 9 }) }
); }; export default IndexPage;