import PutAwayCamScanWrapper from "@/components/PutAwayScan/PutAwayCamScanWrapper";
import { I18nProvider, getServerI18n } from "@/i18n";
import Stack from "@mui/material/Stack";
import Typography from "@mui/material/Typography";
import { Metadata } from "next";
import { Suspense } from "react";
export const metadata: Metadata = {
title: "Put Away Camera",
};
const PutAwayCamPage: React.FC = async () => {
const { t } = await getServerI18n("putAway");
return (
<>
{t("Put Away")}
}>
>
);
};
export default PutAwayCamPage;