<Switch>
<Route path={'/my'} component={My} />
<Route path={'/payments'} component={Payments} />
...
</Switch>
const PageLayout = ({ children }) => (
<React.Fragment>
<header>Header</header>
{children}
<footer>Footer</footer>
</React.Fragment>
);
const Page = () => (
<PageLayout>
<Switch>
<Route path='/my' component={My} />
<Route path='/payments' component={Payments} />
</Switch>
</PageLayout>
);