React NextJS Instagram feeds UI with TailWind CSS Part 3— Create Post and Posts component, add the heading at the feed

Ckmobile
3 min readJan 9, 2022

In this article, we are going to add the Post and Posts component to the Instagram clone project.

You will get unlimited access to all source code in the Youtube channel and free Udemy courses by joining the channel

At the Post.js

const Post = () => {return (<div>Post</div>)}export default Post

At the Posts.js, add the Post component

import Post from "./Post"const Posts = () => {return (<div><Post/><Post/></div>)}export default Posts

--

--