import React from 'react'; import PropTypes from 'prop-types'; import Interactive from 'react-interactive'; import { Link } from 'react-router-dom'; 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;