Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created August 4, 2021 13:48
Show Gist options
  • Save hieptl/5b2866fa9d0cc74ea0f8c372eac17f69 to your computer and use it in GitHub Desktop.
Save hieptl/5b2866fa9d0cc74ea0f8c372eac17f69 to your computer and use it in GitHub Desktop.
Feed Component - Facebook Clone
// import custom components
import InputBox from "./InputBox";
import Stories from "./Stories";
import Posts from "./Posts";
function Feed({ posts }) {
return (
<div className="feed">
<div className="feed__container">
<Stories />
<InputBox />
<Posts />
</div>
</div>
);
}
export default Feed;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment