mirror of
https://github.com/docmost/docmost.git
synced 2026-08-28 17:27:06 +08:00
client: updates
* work on groups ui * move settings to its own page * other fixes and refactoring
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import GroupList from "@/features/group/components/group-list";
|
||||
import SettingsTitle from "@/components/layouts/settings/settings-title.tsx";
|
||||
import { Group, Text } from "@mantine/core";
|
||||
import CreateGroupModal from "@/features/group/components/create-group-modal";
|
||||
|
||||
export default function Groups() {
|
||||
return (
|
||||
<>
|
||||
<SettingsTitle title="Groups" />
|
||||
|
||||
<Group my="md" justify="flex-end">
|
||||
<CreateGroupModal />
|
||||
</Group>
|
||||
|
||||
<GroupList />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user