Recently, I've started working with reactjs and facing difficulties in implementing route changes. Are there any straightforward solutions available for handling router change events without using webpack?
var PageOne = React.createClass({
render: function() {
return (
<h2>Page 1</h2>
);
}
});
var PageTwo = React.createClass({
render: function() {
return (
<h2>Page 2</h2>
);
}
});
var PageThree = React.createClass({
render: function() {
return (
<h2>Page 3</h2>
);
}
});