import { preloadClaims } from "@/app/api/claims";
import ClaimSearch from "@/components/ClaimSearch";
import { I18nProvider, 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 { Metadata } from "next";
import Link from "next/link";
import { Suspense } from "react";
export const metadata: Metadata = {
title: "Claims",
};
const StaffReimbursement: React.FC = async () => {
const { t } = await getServerI18n("claim");
preloadClaims();
return (
<>
{t("Staff Reimbursement")}
}
LinkComponent={Link}
href="/staffReimbursement/create"
>
{t("Create Claim")}
}>
>
);
};
export default StaffReimbursement;