// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { find, get } from 'lodash'; import { Button, Menu, MenuItem } from '@blueprintjs/core'; import { Popover2 } from '@blueprintjs/popover2'; import { Align, CellType } from '@/constants'; import { MoneyFieldCell, Icon, ItemsListCell, InputGroupCell, } from '@/components'; /** * Actions cell renderer component. */ export function ActionsCellRenderer({ row: { index }, payload: { removeRow }, }) { const onRemoveRole = () => { removeRow(index); }; const exampleMenu = ( ); return (