fix circular dependencies

This commit is contained in:
Philipp Kühn 2018-08-25 17:07:32 +02:00
parent bf754d6bcc
commit bf1a091c94
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import { lift, selectParentNode } from 'prosemirror-commands'
import { undo, redo } from 'prosemirror-history'
import { undoInputRule } from 'prosemirror-inputrules'
import { isMac } from '../utils'
import isMac from './isMac'
const keymap = {
'Mod-z': undo,

View File

@ -1,4 +1,4 @@
import { ComponentView } from '.'
import ComponentView from './ComponentView'
export default function initNodeViews({ nodes, editable }) {
const nodeViews = {}