mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
* chore: package code refactoring * chore: component restructuring and refactor * chore: comment create improvement
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
import { FC } from "react";
|
|
|
|
type Props = {
|
|
isEpic?: boolean;
|
|
};
|
|
export const TimelineDependencyPaths: FC<Props> = (props) => {
|
|
const { isEpic = false } = props;
|
|
return <></>;
|
|
};
|