Basic signup form is bouncing back a message

This commit is contained in:
2019-05-07 23:17:48 +10:00
parent 7a218368c2
commit 8896e60e80
8 changed files with 1282 additions and 3 deletions
+5 -1
View File
@@ -3,6 +3,9 @@ import { connect } from 'react-redux';
import { withRouter, Link } from 'react-router-dom';
import PropTypes from 'prop-types';
//panels
import Signup from '../panels/signup.jsx';
class Home extends React.Component {
constructor(props) {
super(props);
@@ -12,7 +15,8 @@ class Home extends React.Component {
render() {
return (
<div className='page'>
<p>This is the home page</p>
<p>This is the home page.</p>
<Signup />
</div>
);
}