12 lines
187 B
TypeScript
12 lines
187 B
TypeScript
"use client";
|
|
|
|
import React, { FC } from "react";
|
|
|
|
type Props = {
|
|
issueId: string;
|
|
};
|
|
|
|
export const IssueStats: FC<Props> = (props) => {
|
|
const { issueId } = props;
|
|
return <></>;
|
|
};
|