[WEB-4959]chore: refactor project member page #8464
This commit is contained in:
parent
031baaa162
commit
c97e418515
15 changed files with 85 additions and 51 deletions
|
|
@ -0,0 +1,10 @@
|
|||
import { observer } from "mobx-react";
|
||||
|
||||
type TProjectMembersActivityButtonProps = { workspaceSlug: string; projectId: string };
|
||||
|
||||
export const ProjectMembersActivityButton = observer(function ProjectMembersActivityButton(
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
props: TProjectMembersActivityButtonProps
|
||||
) {
|
||||
return <></>;
|
||||
});
|
||||
10
apps/web/ce/components/settings/right-sidebar.tsx
Normal file
10
apps/web/ce/components/settings/right-sidebar.tsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { observer } from "mobx-react";
|
||||
|
||||
type TSettingsRightSidebarProps = { workspaceSlug: string; projectId?: string };
|
||||
|
||||
export const SettingsRightSidebar = observer(function SettingsRightSidebar(
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
props: TSettingsRightSidebarProps
|
||||
) {
|
||||
return <></>;
|
||||
});
|
||||
|
|
@ -1 +0,0 @@
|
|||
export * from "./root";
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
import { observer } from "mobx-react";
|
||||
|
||||
type TWorkspaceSettingsRightSidebarProps = { workspaceSlug: string };
|
||||
|
||||
export const WorkspaceSettingsRightSidebar = observer(function WorkspaceSettingsRightSidebar(
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
props: TWorkspaceSettingsRightSidebarProps
|
||||
) {
|
||||
return <></>;
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue