import { Metadata } from "next";
import { getServerI18n, I18nProvider } from "@/i18n";
import Typography from "@mui/material/Typography";
import { Suspense } from "react";
import { Stack } from "@mui/material";
import { Button } from "@mui/material";
import Link from "next/link";
import PrinterSearch from "@/components/PrinterSearch";
import Add from "@mui/icons-material/Add";
export const metadata: Metadata = {
title: "Printer Management",
};
const Printer: React.FC = async () => {
const { t } = await getServerI18n("common");
return (
<>
{t("Printer")}
}
LinkComponent={Link}
href="/settings/printer/create"
>
{t("Create Printer") || "新增列印機"}
}>
>
);
};
export default Printer;