bb-plane-fork/web/ce/components/inbox/source-pill.tsx
Akshita Goyal ed8d00acb1
[WEB-3849] chore: added intake source in the list (#6919)
* chore: added intake source in the list

* fix: refactor
2025-04-11 19:49:35 +05:30

7 lines
188 B
TypeScript

import { EInboxIssueSource } from "@plane/constants";
export type TInboxSourcePill = {
source: EInboxIssueSource;
};
export const InboxSourcePill = (props: TInboxSourcePill) => <></>;