import React, { PropTypes } from 'react';
import { Button } from 'react-toolbox/lib/button';
const EntryEditorToolbar = (
{
isPersisting,
onPersist,
onCancelEdit,
}) => {
const disabled = isPersisting;
return (
{' '}
);
};
EntryEditorToolbar.propTypes = {
isPersisting: PropTypes.bool,
onPersist: PropTypes.func.isRequired,
onCancelEdit: PropTypes.func.isRequired,
};
export default EntryEditorToolbar;