diff --git a/src/App.js b/src/App.js
index 8dcc53b0b..7ae20775e 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,10 +1,15 @@
import React from 'react';
import './App.css';
import { Home, About, Contact, Navigation } from './components';
+import { Route } from 'react-router-dom';
+
const App = () => (
+
+
+
);
diff --git a/src/components/About.js b/src/components/About.js
index 948990def..aaecc0a36 100644
--- a/src/components/About.js
+++ b/src/components/About.js
@@ -1,5 +1,9 @@
import React from 'react';
-const About = () => About
;
+//const About = () => About
;
+
+function About () {
+ return About
+}
export default About;
diff --git a/src/components/Navigation.js b/src/components/Navigation.js
index 2a0b35d9e..c054dec01 100644
--- a/src/components/Navigation.js
+++ b/src/components/Navigation.js
@@ -1,4 +1,5 @@
import React from 'react';
+import { Link } from 'react-router-dom'
const Navigation = () => {
return (
@@ -6,13 +7,13 @@ const Navigation = () => {
diff --git a/src/index.js b/src/index.js
index a682d5a8a..d979d833a 100644
--- a/src/index.js
+++ b/src/index.js
@@ -2,6 +2,9 @@ import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
+import { BrowserRouter as Router } from 'react-router-dom';
import 'bootstrap/dist/css/bootstrap.css';
-ReactDOM.render(, document.getElementById('root'));
+ReactDOM.render(
+
+ , document.getElementById('root'));