import React from 'react' import PropTypes from 'prop-types' import styles from './Login.module.scss' import {connect} from 'react-redux' import {createPropsSelector} from 'reselect-immutable-helpers' import * as actions from './actions' import {getLogin, getFormErrors, getFormValues} from './selectors' import LoginForm from '../../components/molecules/LoginForm' import SocialLogin from '../../components/molecules/SocialLogin' import Jumbotron from '../../components/molecules/common/Jumbotron/Jumbotron' class Login extends React.Component { constructor(props) { super(props) this.pageType = 'login' } componentDidMount() { const {initializeLogin} = this.props initializeLogin() } render() { const {updateFormErrors, updateFormValues, formErrors, formValues} = this.props return (
Let's get to know each other, shall we!
OR