From cb5b93fb6e2817cc45411069d3705d391c29bed9 Mon Sep 17 00:00:00 2001 From: Lyubo Marinov Date: Tue, 22 Aug 2017 12:27:07 -0500 Subject: [PATCH] Switch to prop-types --- react/features/welcome/components/AbstractWelcomePage.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/react/features/welcome/components/AbstractWelcomePage.js b/react/features/welcome/components/AbstractWelcomePage.js index 832529c5a..ee74fab01 100644 --- a/react/features/welcome/components/AbstractWelcomePage.js +++ b/react/features/welcome/components/AbstractWelcomePage.js @@ -1,3 +1,4 @@ +import PropTypes from 'prop-types'; import React, { Component } from 'react'; import { appNavigate } from '../../app'; @@ -19,9 +20,9 @@ export class AbstractWelcomePage extends Component { * @static */ static propTypes = { - _localVideoTrack: React.PropTypes.object, - _room: React.PropTypes.string, - dispatch: React.PropTypes.func + _localVideoTrack: PropTypes.object, + _room: PropTypes.string, + dispatch: PropTypes.func }; /**