Move common preview to folder

[MAILPOET-2743]
This commit is contained in:
Rostislav Wolny
2020-04-16 09:11:40 +02:00
committed by Veljko V
parent 49ec2ed294
commit 041f4f5fdc
2 changed files with 3 additions and 3 deletions

View File

@@ -2,8 +2,8 @@ import React, { useState } from 'react';
import PropTypes from 'prop-types';
import MailPoet from 'mailpoet';
import classnames from 'classnames';
import MobileIcon from './preview/mobile_icon';
import DesktopIcon from './preview/desktop_icon';
import MobileIcon from './mobile_icon';
import DesktopIcon from './desktop_icon';
function Preview({
children,

View File

@@ -7,7 +7,7 @@ import MailPoet from 'mailpoet';
import { Spinner } from '@wordpress/components';
import { useDispatch, useSelect } from '@wordpress/data';
import Preview from '../../common/preview.jsx';
import Preview from '../../common/preview/preview.jsx';
import Modal from '../../common/modal/modal.jsx';
import { blocksToFormBodyFactory } from '../store/blocks_to_form_body.jsx';