mirror of
https://github.com/docmost/docmost.git
synced 2026-05-18 07:24:04 +08:00
1412f1d982
* work on groups ui * move settings to its own page * other fixes and refactoring
14 lines
389 B
TypeScript
14 lines
389 B
TypeScript
import SettingsTitle from "@/components/layouts/settings/settings-title.tsx";
|
|
import GroupMembersList from "@/features/group/components/group-members";
|
|
import GroupDetails from "@/features/group/components/group-details";
|
|
|
|
export default function GroupInfo() {
|
|
return (
|
|
<>
|
|
<SettingsTitle title="Manage Group" />
|
|
<GroupDetails />
|
|
<GroupMembersList />
|
|
</>
|
|
);
|
|
}
|