diff --git a/react-frontend/src/App.js b/react-frontend/src/App.js
index 70f5cc4..3b1bda8 100644
--- a/react-frontend/src/App.js
+++ b/react-frontend/src/App.js
@@ -28,7 +28,7 @@ function App() {
} />
} />
- {/**/}
+
diff --git a/react-frontend/src/components/Footer.js b/react-frontend/src/components/Footer.js
index 14aed5e..47c8af6 100644
--- a/react-frontend/src/components/Footer.js
+++ b/react-frontend/src/components/Footer.js
@@ -1,19 +1,16 @@
import React from "react";
+import { Container } from "react-bootstrap";
function Footer(props) {
return (
// footer using react-bootstrap
-
-
-
+
+ URL Shortener App by Dhananjay
+
);
}
diff --git a/react-frontend/src/components/History.js b/react-frontend/src/components/History.js
index 57327f4..70c7e95 100644
--- a/react-frontend/src/components/History.js
+++ b/react-frontend/src/components/History.js
@@ -39,7 +39,7 @@ function History() {
};
return (
-
+
- {history.map((data) => {
- return (
-
-
+
+ {history.map((data) => {
+ return (
+
-
- );
- })}
+ );
+ })}
+
);
}