Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

25 řádky
610 B

  1. import { Metadata } from "next";
  2. import { getServerI18n } from "@/i18n";
  3. import Add from "@mui/icons-material/Add";
  4. import Button from "@mui/material/Button";
  5. import Stack from "@mui/material/Stack";
  6. import Typography from "@mui/material/Typography";
  7. import Link from "next/link";
  8. export const metadata: Metadata = {
  9. title: "Create Invoice",
  10. };
  11. const Invoice: React.FC = async () => {
  12. const { t } = await getServerI18n("Create Invoice");
  13. return (
  14. <>
  15. <Typography variant="h4" marginInlineEnd={2}>
  16. {t("Create Invoice")}
  17. </Typography>
  18. </>
  19. )
  20. };
  21. export default Invoice;