import React, { PropTypes } from 'react'; import { Link } from 'react-router'; function AuthenticationError(props) { return (

Error

It looks like you've been logged out. Please  log in.

); } AuthenticationError.propTypes = { closeModal: PropTypes.func.isRequired }; export default AuthenticationError;