plane/web/hooks/use-global-views.tsx

10 lines
170 B
TypeScript
Raw Normal View History

2024-01-30 08:56:59 +00:00
type TUseViewsProps = {};
export const useViews = (issueId: string | undefined): TUseViewsProps => {
console.log("issueId", issueId);
return {
issueId,
};
};