import React, { PropTypes } from 'react'; import Interactive from 'react-interactive'; import { Link } from 'react-router'; import s from '../styles/exampleComponent.style'; const propTypes = { children: PropTypes.element, }; function ExampleComponent({ children }) { return (

This is an example page. Refresh the page or copy/paste the url to test out the redirect functionality (this same page should load after the redirect).

{children ||
Example two deep with query and hash
}
); } ExampleComponent.propTypes = propTypes; export default ExampleComponent;