Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/Container.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Update & delegation layer
*/

import React, { Component, PropTypes } from 'react'
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import Immutable from 'immutable'

import { getSelector, getDepth, setDeep } from '../utilities'
Expand Down
3 changes: 2 additions & 1 deletion src/components/HTMLTree.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Public interface of the component
*/

import React, { Component, PropTypes } from 'react'
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { findDOMNode } from 'react-dom'
import { renderToString } from 'react-dom/server'
import { parseDOM } from 'htmlparser2'
Expand Down
3 changes: 2 additions & 1 deletion src/components/Node.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Representation of an HTML element
*/

import React, { Component, PropTypes } from 'react'
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import classnames from 'classnames'

// http://www.w3.org/TR/html-markup/syntax.html#void-elements
Expand Down