diff --git a/client/src/App.js b/client/src/App.js
index c7b27ce27..a6df09534 100644
--- a/client/src/App.js
+++ b/client/src/App.js
@@ -1,34 +1,34 @@
-import './App.css';
import React from 'react';
-import { useRoutes } from 'react-router-dom'
-import ReadPosts from './pages/ReadPosts'
-import CreatePost from './pages/CreatePost'
-import EditPost from './pages/EditPost'
-import { Link } from 'react-router-dom'
+import { Link, useRoutes } from 'react-router-dom';
+import './App.css';
+import CreatePost from './pages/CreatePost';
+import EditPost from './pages/EditPost';
+import ReadPosts from './pages/ReadPosts';
const App = () => {
const descr = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.'
- const posts = [
- {'id':'1',
- 'title': 'Cartwheel in Chelsea π€Έπ½ββοΈ',
- 'author':'Harvey Milian',
- 'description': descr},
- {'id':'2',
- 'title': 'Love Lock in Paris π',
- 'author':'Beauford Delaney',
- 'description':descr},
- {'id':'3',
- 'title': 'Wear Pink on Fridays π',
- 'author':'Onika Tonya',
- 'description':descr},
- {'id':'4',
- 'title': 'Adopt a Dog πΆ',
- 'author':'Denise Michelle',
- 'description':descr},
- ]
+ // const posts = [
+ // {'id':'1',
+ // 'title': 'Cartwheel in Chelsea π€Έπ½ββοΈ',
+ // 'author':'Harvey Milian',
+ // 'description': descr},
+ // {'id':'2',
+ // 'title': 'Love Lock in Paris π',
+ // 'author':'Beauford Delaney',
+ // 'description':descr},
+ // {'id':'3',
+ // 'title': 'Wear Pink on Fridays π',
+ // 'author':'Onika Tonya',
+ // 'description':descr},
+ // {'id':'4',
+ // 'title': 'Adopt a Dog πΆ',
+ // 'author':'Denise Michelle',
+ // 'description':descr},
+ // ]
+ const posts = []
// Sets up routes
diff --git a/client/src/pages/CreatePost.js b/client/src/pages/CreatePost.js
index b4406ee9f..87563d629 100644
--- a/client/src/pages/CreatePost.js
+++ b/client/src/pages/CreatePost.js
@@ -1,5 +1,5 @@
-import React from 'react';
-import './CreatePost.css'
+import React, { useState } from 'react';
+import './CreatePost.css';
const CreatePost = () => {
@@ -27,7 +27,7 @@ const CreatePost = () => {
-