Skip to content

Commit

Permalink
fix(redux-saga#54): upgrade to latest versions for react and react-dom
Browse files Browse the repository at this point in the history
  • Loading branch information
duza committed Dec 16, 2019
1 parent 6826cf3 commit 1b94897
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Counter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*eslint-disable no-unused-vars */
import React, { Component, PropTypes } from 'react'
import React from 'react';
import PropTypes from 'prop-types';

const Counter = ({ value, onIncrement, onDecrement }) =>
<div>
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
"license": "MIT",
"dependencies": {
"babel-polyfill": "6.3.14",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"prop-types": "^15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"redux": "^3.3.1",
"redux-saga": "^0.15.0"
},
Expand Down

0 comments on commit 1b94897

Please sign in to comment.