import type { FC, ReactNode } from 'react'; import { ModuleArrow } from '@/Components/Module/components/arrow.tsx'; import styles from './item.module.scss';const ModuleItemTitle: FC<{ id: string; title: string; }> = ({ id, title }) => { return (

{title}

); }; export const ModuleItem: FC<{ id: string; title: string; children: ReactNode; }> = ({ id, title, children, ...props }) => { return (
{children}
); };