Skip to content

Commit

Permalink
Update timeZone example app to use React 15.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyyap committed Sep 15, 2017
1 parent 10878f3 commit 29f2647
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions examples/explicit-timezone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@
"react-scripts": "0.6.0"
},
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-intl": "^2.1.5"
"prop-types": "^15.5.4",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-intl": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
Expand Down
3 changes: 2 additions & 1 deletion examples/explicit-timezone/src/App.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, {Component, PropTypes} from 'react';
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {FormattedDate, FormattedTime} from 'react-intl';

class App extends Component {
Expand Down

0 comments on commit 29f2647

Please sign in to comment.