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