import React from 'react'; const EmptyPage = () => { return (
Empty Page

Use this page to start from scratch and place your custom content.

); } const comparisonFn = function (prevProps, nextProps) { return prevProps.location.pathname === nextProps.location.pathname; }; export default React.memo(EmptyPage, comparisonFn);