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 UserSearch from "@/components/UserSearch";
import Add from "@mui/icons-material/Add";
export const metadata: Metadata = {
title: "User Management",
};
const User: React.FC = async () => {
const { t } = await getServerI18n("user");
return (
<>
{t("User")}
}
LinkComponent={Link}
href="/settings/user/create"
>
{t("Create User")}
}>
>
);
};
export default User;