import React from 'react'; import Checkbox from './Checkbox'; import { deleteItem, moveItemUp, moveItemDown } from '../utils'; const ItemActions = ({ dispatch, first, identifier, item, last, onChange, type }) => { return (
{ onChange(`${identifier}enable`, v); }} />
{!first && ( )} {!last && ( )}
); }; export default ItemActions;