React NextJS Instagram feeds UI with TailWind CSS Part 2 — Copy the stories

Ckmobile
2 min readJan 8, 2022

In this article, we are going to add the instagram stories to the <Feed> component.

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

We copy the Stories component from the Instagram stories clone project.

Import the stories component at Feed.js

import Stories from "./Stories";const Feed = () => {return (<main className="grid grid-cols-1  md:max-w-3xl xl:grid-cols-3  xl:max-w-4xl mx-auto"><section className="col-span-2 bg-red-300"><Stories/></section><section className="bg-blue-100">mini profile and suggestions</section></main>)}export default Feed

--

--