diff --git a/src/components/404NotFound/index.js b/src/components/404NotFound/index.js index f0f2220..15bf6fe 100644 --- a/src/components/404NotFound/index.js +++ b/src/components/404NotFound/index.js @@ -2,6 +2,8 @@ import React from "react"; import { Result, Button } from "antd"; import { useHistory } from "react-router-dom"; +import Header from "../Header"; + export const NotFound404 = () => { const history = useHistory(); @@ -11,12 +13,15 @@ export const NotFound404 = () => { }; return ( - Back Home} - /> + <> +
+ Back Home} + /> + ); };