cornflourblue / react-redux-registration-login-example

React + Redux - User Registration and Login Tutorial & Example
https://jasonwatmore.com/post/2017/09/16/react-redux-user-registration-and-login-tutorial-example
MIT License
1.19k stars 760 forks source link

Jboss server issue #8

Open shalinikarkera opened 6 years ago

shalinikarkera commented 6 years ago

I tried this app to deploy in jboss server, it deployed but when I load the page it loads only the header and footer , doesn't load Router part. My modified App.jsx is here

`render() { const { alert } = this.props; return (

{alert.message &&
{alert.message}
}
{/**/}
            <footer className="navbar-fixed-bottom" style={{ backgroundColor: "#BFBFBF" }}>
                <div className="container">
                    <div className="row">
                        &nbsp;&nbsp;
                    </div>
                </div>
            </footer>
        </div>
    );
}`