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ů.
|
- import { Metadata } from "next";
- import { getServerI18n } from "@/i18n";
- import Add from "@mui/icons-material/Add";
- import Button from "@mui/material/Button";
- import Stack from "@mui/material/Stack";
- import Typography from "@mui/material/Typography";
- import Link from "next/link";
-
- export const metadata: Metadata = {
- title: "Create Invoice",
- };
-
- const Invoice: React.FC = async () => {
- const { t } = await getServerI18n("Create Invoice");
-
- return (
- <>
- <Typography variant="h4" marginInlineEnd={2}>
- {t("Create Invoice")}
- </Typography>
- </>
- )
- };
-
- export default Invoice;
|