8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
import type { EInboxIssueSource } from "@plane/types";
|
|
|
|
export type TInboxSourcePill = {
|
|
source: EInboxIssueSource;
|
|
};
|
|
|
|
export const InboxSourcePill = (props: TInboxSourcePill) => <></>;
|