feat: init
This commit is contained in:
14
apps/web/ce/components/issues/issue-layouts/issue-stats.tsx
Normal file
14
apps/web/ce/components/issues/issue-layouts/issue-stats.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
"use client";
|
||||
|
||||
import type { FC } from "react";
|
||||
import React from "react";
|
||||
|
||||
type Props = {
|
||||
issueId: string;
|
||||
className?: string;
|
||||
size?: number;
|
||||
showProgressText?: boolean;
|
||||
showLabel?: boolean;
|
||||
};
|
||||
|
||||
export const IssueStats: FC<Props> = (props) => <></>;
|
||||
Reference in New Issue
Block a user