import SearchPage from "@/components/StockIssue/index"; import { PreloadList } from "@/components/StockIssue/action"; import { getServerI18n } from "@/i18n"; import { I18nProvider } from "@/i18n"; import { Stack, Typography } from "@mui/material"; import { Metadata } from "next"; import { Suspense } from "react"; export const metadata: Metadata = { title: "Stock Issue", }; const SearchView: React.FC = async () => { const { t } = await getServerI18n("inventory"); PreloadList(); return ( <> }> ); }; export default SearchView;