import React from 'react' import ActionBar from './ActionBar' export default ({ title, children, columnCloser, isLast, actions, handler }) => { let actionBar = null; if (isLast) { if (columnCloser) { actions = actions ? actions.slice() : []; actions.push('close'); } actionBar = ( operation === 'close' ? columnCloser() : handler(operation)} />); } else { actionBar = (); } return (

{title}

{actionBar} {children}
) }