import { IntroListItemProps } from '../model/types'; import { useNavigate } from '@/shared/lib/hooks/use-navigate'; export const IntroListItem = ({ className, serviceName, serviceDesc, icon, path }: IntroListItemProps) => { const { navigate } = useNavigate(); const onClickToNavigate = () => { if(!!path){ navigate(path); } }; return ( <>
onClickToNavigate() } >
{ serviceName }

{ serviceDesc }

{
) };