import React, { PropTypes } from 'react'; import InlineSVG from 'react-inlinesvg'; const exitUrl = require('../../../images/exit.svg'); import { Link } from 'react-router'; class ForceAuthentication extends React.Component { componentDidMount() { this.refs.forceAuthentication.focus(); } render() { return (

In order to save sketches, you must be logged in. Please  Login  or  Sign Up.

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