mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
13 lines
187 B
TypeScript
13 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 <></>;
|
|
};
|