import { FC } from 'react' import Link from 'next/link' interface Props { pathForm: string pathList: string entityName: string currentEntity: string } export const Toolbar: FC = ({ pathForm, pathList, entityName, currentEntity, }) => { return ( <>

) }