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