import { I18nProvider, getServerI18n } from "@/i18n"; import { Typography } from "@mui/material"; import { Suspense } from "react"; import CreatePrinter from "@/components/CreatePrinter"; const CreatePrinterPage: React.FC = async () => { const { t } = await getServerI18n("common"); return ( <> {t("Create Printer") || "新增列印機"} }> ); }; export default CreatePrinterPage;