re-order components

This commit is contained in:
Collin M. Barrett 2019-08-24 20:20:56 -05:00
parent 84b0d0adcc
commit 66f6aba742

View file

@ -33,6 +33,11 @@ const Logo = (): JSX.Element =>
height="44px"
style={{ background: '#fff' }} />;
const NotFound = (props: RouteComponentProps): JSX.Element =>
<h2>
404 Not Found: <code>{props.location.pathname}</code>
</h2>;
const CopyrightAuthor = (): JSX.Element =>
<span>
©{new Date().getFullYear()}&nbsp;
@ -68,9 +73,4 @@ const Donate = (): JSX.Element =>
title="Donate to FilterLists with Beerpay"
target="_blank" rel="noopener noreferrer">
Donate
</a>;
const NotFound = (props: RouteComponentProps): JSX.Element =>
<h2>
404 Not Found: <code>{props.location.pathname}</code>
</h2>;
</a>;