From 66f6aba742fc25ddd826321bcde8e74cd97ee621 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 24 Aug 2019 20:20:56 -0500 Subject: [PATCH] re-order components --- src/FilterLists.Web.V2/src/App.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/FilterLists.Web.V2/src/App.tsx b/src/FilterLists.Web.V2/src/App.tsx index e4c43629a..dc88bea5d 100644 --- a/src/FilterLists.Web.V2/src/App.tsx +++ b/src/FilterLists.Web.V2/src/App.tsx @@ -33,6 +33,11 @@ const Logo = (): JSX.Element => height="44px" style={{ background: '#fff' }} />; +const NotFound = (props: RouteComponentProps): JSX.Element => +

+ 404 Not Found: {props.location.pathname} +

; + const CopyrightAuthor = (): JSX.Element => ©{new Date().getFullYear()}  @@ -68,9 +73,4 @@ const Donate = (): JSX.Element => title="Donate to FilterLists with Beerpay" target="_blank" rel="noopener noreferrer"> Donate - ; - -const NotFound = (props: RouteComponentProps): JSX.Element => -

- 404 Not Found: {props.location.pathname} -

; \ No newline at end of file + ; \ No newline at end of file