Created
August 4, 2021 13:48
-
-
Save hieptl/5b2866fa9d0cc74ea0f8c372eac17f69 to your computer and use it in GitHub Desktop.
Feed Component - Facebook Clone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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