diff --git a/functions/handlers/post.js b/functions/handlers/post.js
index 2ae8d3c..6159e71 100644
--- a/functions/handlers/post.js
+++ b/functions/handlers/post.js
@@ -41,8 +41,4 @@ exports.getallPostsforUser = (req, res) => {
console.error(err);
return res.status(500).json({error: 'Failed to fetch all posts written by specific user.'})
})
-};
-
-exports.getFilteredPosts = (req, res) => {
- admin.firestore().collection('posts').where('userHandle', '==', 'new user').where('microBlogTopics', '==')
};
\ No newline at end of file
diff --git a/twistter-frontend/src/App.css b/twistter-frontend/src/App.css
index 940f1fc..af56c8c 100644
--- a/twistter-frontend/src/App.css
+++ b/twistter-frontend/src/App.css
@@ -52,3 +52,6 @@ body {
color: #1da1f2;
}
+.a{
+ text-decoration: none;
+}
diff --git a/twistter-frontend/src/components/post/Posts.js b/twistter-frontend/src/components/post/Posts.js
new file mode 100644
index 0000000..86c1cce
--- /dev/null
+++ b/twistter-frontend/src/components/post/Posts.js
@@ -0,0 +1,55 @@
+import React, { Component } from 'react'
+import withStyles from '@material-ui/core/styles/withStyles';
+import Link from 'react-router-dom/Link';
+// MUI Stuff
+import Card from '@material-ui/core/Card';
+import CardContent from '@material-ui/core/CardContent';
+import CardMedia from '@material-ui/core/CardMedia';
+import { Typography } from '@material-ui/core';
+
+
+const styles = {
+ card:{
+ display: 'flex',
+ marginBottom: 20,
+ },
+ image:{
+ minWidth: 200,
+ },
+ content: {
+ padding: 25,
+ objectFit: 'cover',
+ }
+}
+class Posts extends Component {
+ render() {
+ const { classes, post : {body, createdAt, userImage, userHandle, commmentCount, likeCount, microBlogTopics} } = this.props
+
+ return (
+
loading topics...
); + let recentPostsMarkup = this.state.posts ? ( + this.state.posts.map(post =>Loading...
); + return (