mirror of
https://github.com/docmost/docmost.git
synced 2025-11-19 03:11:12 +10:00
client: updates
* work on groups ui * move settings to its own page * other fixes and refactoring
This commit is contained in:
13
apps/client/src/pages/settings/group/group-info.tsx
Normal file
13
apps/client/src/pages/settings/group/group-info.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user