mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
14 lines
277 B
TypeScript
14 lines
277 B
TypeScript
import { FC } from "react";
|
|
|
|
type TGlobalViewsRootProps = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
viewId: string;
|
|
};
|
|
|
|
export const GlobalViewsRoot: FC<TGlobalViewsRootProps> = (props) => {
|
|
const { viewId } = props;
|
|
|
|
return <div>GlobalViewsRoot {viewId}</div>;
|
|
};
|