10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import type { FC } from "react";
|
|
|
|
type Props = {
|
|
isEpic?: boolean;
|
|
};
|
|
export const TimelineDependencyPaths: FC<Props> = (props) => {
|
|
const { isEpic = false } = props;
|
|
return <></>;
|
|
};
|