mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 22:59:33 +01:00
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
|
|
import { EInboxIssueSource } from "@plane/constants";
|
||
|
|
|
||
|
|
export type TInboxSourcePill = {
|
||
|
|
source: EInboxIssueSource;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const InboxSourcePill = (props: TInboxSourcePill) => <></>;
|