* chore: package code refactoring * chore: component restructuring and refactor * chore: comment create improvement
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
import { FC } from "react";
|
|
|
|
type Props = {
|
|
isEpic?: boolean;
|
|
};
|
|
export const TimelineDependencyPaths: FC<Props> = (props) => {
|
|
const { isEpic = false } = props;
|
|
return <></>;
|
|
};
|