mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
re-order components
This commit is contained in:
parent
84b0d0adcc
commit
66f6aba742
1 changed files with 6 additions and 6 deletions
|
|
@ -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()}
|
||||
|
|
@ -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>;
|
||||
Loading…
Reference in a new issue