Skip to content

Commit

Permalink
Merge 2a195df into e026d9e
Browse files Browse the repository at this point in the history
  • Loading branch information
slaskis committed Aug 6, 2017
2 parents e026d9e + 2a195df commit 71099ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vdom/component.js
Expand Up @@ -5,7 +5,7 @@ import { enqueueRender } from '../render-queue';
import { getNodeProps } from './index';
import { diff, mounts, diffLevel, flushMounts, recollectNodeTree, removeChildren } from './diff';
import { createComponent, collectComponent } from './component-recycler';
import { removeNode } from '../dom';
import { removeNode } from '../dom/index';

/** Set a component's `props` (generally derived from JSX attributes).
* @param {Object} props
Expand Down
2 changes: 1 addition & 1 deletion src/vdom/diff.js
Expand Up @@ -4,7 +4,7 @@ import { buildComponentFromVNode } from './component';
import { createNode, setAccessor } from '../dom/index';
import { unmountComponent } from './component';
import options from '../options';
import { removeNode } from '../dom';
import { removeNode } from '../dom/index';

/** Queue of components that have been mounted and are awaiting componentDidMount */
export const mounts = [];
Expand Down

0 comments on commit 71099ce

Please sign in to comment.