mirror of
https://github.com/docmost/docmost.git
synced 2026-08-28 01:07:08 +08:00
19 lines
587 B
TypeScript
19 lines
587 B
TypeScript
import SettingsTitle from "@/components/settings/settings-title.tsx";
|
|
import GroupMembersList from "@/features/group/components/group-members";
|
|
import GroupDetails from "@/features/group/components/group-details";
|
|
import { useTranslation } from "react-i18next";
|
|
import { DocumentTitle } from "@/components/ui/document-title.tsx";
|
|
|
|
export default function GroupInfo() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
<DocumentTitle title={t("Manage Group")} />
|
|
<SettingsTitle title={t("Manage Group")} />
|
|
<GroupDetails />
|
|
<GroupMembersList />
|
|
</>
|
|
);
|
|
}
|