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, }) => (
{title}
{ range(1,7).map(el => (
)) }
); export { NodeRelated };