chore: initial workspace setting proto definition

This commit is contained in:
Steven
2023-09-12 08:50:23 +08:00
parent 032d9c1220
commit e843594a02
17 changed files with 1910 additions and 52 deletions

View File

@ -1,3 +1,4 @@
import { Divider } from "@mui/joy";
import PreferenceSection from "@/components/setting/PreferenceSection";
import AccessTokenSection from "../components/setting/AccessTokenSection";
import AccountSection from "../components/setting/AccountSection";
@ -16,6 +17,11 @@ const Setting: React.FC = () => {
<PreferenceSection />
{isAdmin && (
<>
<Divider />
<div>
<h2 className="text-2xl font-bold">Workspace setting</h2>
<p className="text-gray-500 text-sm">Manage your workspace.</p>
</div>
<MemberSection />
<WorkspaceSection />
</>