import PropTypes from 'prop-types'; import React from 'react'; import PaperCanvas from '../containers/paper-canvas.jsx'; const PaintEditorComponent = props => ( ); PaintEditorComponent.propTypes = { tool: PropTypes.shape({ name: PropTypes.string.isRequired }) }; export default PaintEditorComponent;