Use read-dom for findDOMNode calls in LogMonitor

Tiny change an makes the current build not throw red warnings when used in React 14-rc1.

Tests still pass locally.
This commit is contained in:
Thomas 2015-09-28 18:39:11 +01:00
parent cbbaaef554
commit e6409894fe

View File

@ -1,4 +1,5 @@
import React, { PropTypes, findDOMNode, Component } from 'react';
import React, { PropTypes, Component } from 'react';
import { findDOMNode } from 'react-dom';
import LogMonitorEntry from './LogMonitorEntry';
import LogMonitorButton from './LogMonitorButton';
import * as themes from './themes';