Skip to content

Commit

Permalink
Use seperated prop-types package instead off access PropTypes via the…
Browse files Browse the repository at this point in the history
… main React package
  • Loading branch information
Duc Nguyen committed Jun 27, 2017
1 parent d66be53 commit 34b61be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
"karma-webpack": "^1.7.0",
"mocha": "^3.1.2",
"phantom": "^2.0.4",
"prop-types": "^15.5.10",
"querystring": "^0.2.0",
"radium": "^0.18.1",
"react": "^15.0.1",
Expand Down
3 changes: 2 additions & 1 deletion src/Bling.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* eslint-disable react/sort-comp */
import React, {Component, PropTypes} from "react";
import React, {Component} from "react";
import PropTypes from "prop-types";
import ReactDOM from "react-dom";
import invariant from "fbjs/lib/invariant";
import deepEqual from "deep-equal";
Expand Down

0 comments on commit 34b61be

Please sign in to comment.