mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
15 lines
458 B
TypeScript
15 lines
458 B
TypeScript
import React, { FC } from "react";
|
|
import { IIssue } from "types";
|
|
import { IssueListItem } from "./item";
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
export interface IIssueListView {
|
|
issues: IIssue[] | null;
|
|
groupId: string;
|
|
}
|
|
|
|
export const IssueListView: FC<IIssueListView> = observer((props) => {
|
|
const { issues = [], groupId } = props;
|
|
return <div>{issues && issues.map((issue) => <IssueListItem issue={issue} groupId={groupId} />)}</div>;
|
|
});
|