import React, {FC, HTMLAttributes} from 'react';
import { range } from 'ramda';
import * as styles from './styles.scss';
import {Group} from "~/components/containers/Group";
type IProps = HTMLAttributes & {}
const NodeRelated: FC = ({
title,
}) => (
{
range(1,7).map(el => (
))
}
);
export { NodeRelated };