/**
 * View Break block.
 * @module components/Blocks/break/View
 */

import React from 'react';
import cx from 'classnames';
import './_break.scss';
/**
 * View Break block class.
 * @class View
 * @extends Component
 */
const View = () => {
  return <div className={cx('block break-block')}></div>;
};

export default View;
