import ActiveLink from '@components/ActiveLink' import React from 'react' export interface IButtons { id: ValueType title: string href: string className?: string handleClick?: () => void } interface BottomButtonsProps { handleButtons: IButtons[] } const BottomButtons = (props: BottomButtonsProps) => { const { handleButtons } = props return (
{handleButtons && handleButtons.map(item => ( ))}
) } export { BottomButtons }