Merge branch 'bug/prop_types_#1'

Fixes #1
This commit is contained in:
cleverbeagle 2017-06-14 11:42:38 -05:00
commit 5abb3025cb
2 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import { Route, Redirect } from 'react-router-dom';
const Authenticated = ({ loggingIn, authenticated, component, ...rest }) => (

View file

@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import { Route, Redirect } from 'react-router-dom';
const Public = ({ loggingIn, authenticated, component, ...rest }) => (